/* ============================================================================
   HEATHENS brand system  (Layer 2)
   Loaded AFTER London's built/screen.css so it cascades over the base theme.
   Design direction: ridgeline and reveal. Bone page, warm ink, serif body.
   No religious iconography; the cross never appears as ornament.

   TYPE SIZING RULE
   Every font-size comes from a --h-t-* token. Never hard-code a clamp() in a
   component rule; retune the token instead. Component classes that set a size
   are prefixed .gh-content so they out-specify London's .gh-content h2 etc.
   ========================================================================== */

/* ---- 1. Tokens ---------------------------------------------------------- */

:root { 
  /* Bone. From the white clapboard church in the key art. Page base. */ --h-bone: #EDE8DF;
  --h-bone-deep: #DFD8CC;
  /* Ink. Near-black, warm cast. Body type and dark sections. Never #000. */ --h-ink: #121212;
  --h-ink-soft: #4A443C;
  /* Oxblood. The cross in the wordmark. Rubrics, dividers, section marks. */ --h-oxblood: #6E1416;
  /* Scarlet. The script logo red. Links and interactive only. */ --h-scarlet: #A8261F;
  /* Dusk. Navy secondary. Research sections only. Do not use elsewhere. */ --h-dusk: #2A3140;
  /* Button label. Always white, on every background. */ --h-btn-label: #FFFFFF;
  --h-display: 'Newsreader', Georgia, serif;
  --h-body: 'Newsreader', Georgia, serif;
  --h-util: 'Archivo', -apple-system, sans-serif;
  --h-measure: 54rem;
  /* text column */ --h-wide: 104rem;
  /* wide media */ /* Section container — grows with the viewport, never touches the edges */ 
  --h-container: min(120rem, 94vw);;
  --h-t-xs:   clamp(1.15rem, 1.09rem + 0.32vw, 1.36rem);
  --h-t-sm:   clamp(1.52rem, 1.44rem + 0.48vw, 1.76rem);
  --h-t-base: clamp(1.76rem, 1.63rem + 0.64vw, 2.16rem);
  --h-t-lead: clamp(2.08rem, 1.84rem + 1.12vw, 2.80rem);
  --h-t-h3:   clamp(2.00rem, 1.76rem + 1.20vw, 2.80rem);
  --h-t-h2:   clamp(2.60rem, 2.16rem + 2.20vw, 4.00rem);
  --h-t-h1:   clamp(3.20rem, 2.40rem + 4.00vw, 5.60rem);
  --h-t-hero: clamp(4.00rem, 2.88rem + 5.60vw, 7.20rem);
  /* headwords, statistics */ /* Section rhythm */ --h-gap-sec: clamp(2.5rem, 6vh, 5rem);
  --h-gap-cols: clamp(1.5rem, 4vw, 3.5rem);
  --h-ease: cubic-bezier(0.16, 1, 0.3, 1);
  /* Remap London / Ghost base variables onto Heathens tokens. */ --background-color: var(--h-bone);
  --color-base: var(--h-ink);
  --color-primary: var(--h-scarlet);
  --ghost-accent-color: var(--h-scarlet);
  --gh-font-heading: var(--h-display);
  --gh-font-body: var(--h-body);
  --font-serif: var(--h-body);
  --content-width: var(--h-measure);
  --h-shadow-head: 0 1px 2px color-mix(in srgb, var(--h-ink) 16%, transparent);
  --h-shadow-head-ink: 0 1px 3px rgba(0, 0, 0, 0.45);
  --h-shadow-img: 0 2px 4px color-mix(in srgb, var(--h-ink) 8%, transparent),
                  0 12px 28px -12px color-mix(in srgb, var(--h-ink) 24%, transparent);
  --h-shadow-video: 0 2px 6px color-mix(in srgb, var(--h-ink) 10%, transparent),
                    0 16px 36px -14px color-mix(in srgb, var(--h-ink) 30%, transparent);
   }

/* The quad carousel is reparented to <body> by its own script, so it sits
   outside .gh-content and none of the section-2 link styling reaches it.
   The anchor is appended as a child of the grid so it travels with it. */

.h-quad-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  text-decoration: none;
  background: none;
  cursor: pointer;
}

.h-quad-link:focus-visible {
  outline: 3px solid var(--h-bone);
  outline-offset: -6px;
}

.h-quad-link::after {
  content: "Meet the Heathens →";
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  padding: 0.7rem 1.3rem;
  background: color-mix(in srgb, var(--h-ink) 80%, transparent);
  color: var(--h-bone);
  font-family: var(--h-util);
  font-size: var(--h-t-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 160ms var(--h-ease);
}

.h-quad-link:hover::after { background: var(--h-oxblood); }

/* ---- 1b. Layout: escape London's prose column -------------------------- */

/* page.hbs renders content in .h-content, NOT London's .gh-canvas grid.
   Prose is pulled back to the measure; wide/full image cards, HTML-card
   sections and .h-full go edge to edge. */

.h-page { overflow-x: clip; }

/* clip, never hidden: hidden breaks sticky descendants */

.h-content { width: 100%; max-width: none; margin-inline: 0; display: block; }

/* Genuine prose cards: constrain to the reading measure, centered. */

.h-content {
  > * { 
    max-width: var(--h-measure);
    margin-inline: auto;
    box-sizing: border-box;
    padding-inline: 0;
   }
  > .kg-width-wide { max-width: var(--h-wide); }
  /* Full-width SECTIONS (HTML cards + explicit .h-full) simply fill the
     full-width .h-content wrapper. No 100vw, no negative margins — so a
     scrollbar never induces horizontal overflow. */
  > .kg-html-card,
  > .h-full { max-width: none; width: 100%; margin-inline: 0; }
  /* The viewport escape hatch is kept ONLY for kg-width-full IMAGE cards, which
     live in the prose column and must break out of the measure. */
  > .kg-width-full,
  > .kg-card.kg-width-full { 
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
   }
}

.h-content > .h-full.h-bleed {
  width: 100vw; max-width: none;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  margin-block: 0;
}
/* Footer sits at the bottom of the viewport on short pages. */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
}
.site-main { flex: 1 0 auto; }
.h-foot { flex-shrink: 0; }

.gh-search { display: none !important; }

/* ---- 2. Base typography ------------------------------------------------- */

body { 
  background: var(--h-bone);
  color: var(--h-ink);
  font-family: var(--h-body);
  font-size: var(--h-t-base);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
   }

h1,
h2,
h3,
h4,
h5,
h6,
.post-content-title,
.gh-article-title,
.gh-content h1,
.gh-content h2,
.gh-content h3,
.gh-content h4 { 
  font-family: var(--h-display);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--h-ink);
  text-shadow: var(--h-shadow-head);
   }

/* On ink, a 16%-ink shadow is invisible — bone type needs a true black
   shadow to read as lifted rather than smudged. */

.h-on-ink :is(h1, h2, h3, h4),
.h-sec-dark :is(h1, h2, h3, h4),
.h-band :is(h1, h2, h3, h4),
.h-hero :is(h1, h2, h3, h4) { text-shadow: var(--h-shadow-head-ink); }
/* Sizes set here at .gh-content specificity so London's `.gh-content h2
   { font-size: 1.6em }` no longer wins. Contrast comes from size and the
   face's own stroke contrast, not weight. */

.gh-content {
  h1 { font-size: var(--h-t-h1); font-weight: 600; }
  h2 { font-size: var(--h-t-h2); font-weight: 500; }
  h3 { font-size: var(--h-t-h3); font-weight: 500; }
  h4 { font-size: var(--h-t-lead); font-weight: 500; }
  p,
  li { 
    font-family: var(--h-body);
    font-size: var(--h-t-base);
    line-height: 1.65;
    color: var(--h-ink);
   }
  /* Links: scarlet, underline grows from the left on hover. Interactive only. */
  a:not(.kg-btn):not(.h-btn):not(.kg-image-card a) { 
    color: var(--h-scarlet);
    text-decoration: none;
    background-image: linear-gradient(var(--h-scarlet), var(--h-scarlet));
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 200ms var(--h-ease);
    padding-bottom: 1px;
   }
  a:not(.kg-btn):not(.h-btn):not(.kg-image-card a):hover { background-size: 100% 1px; }
}

/* Keyboard focus: visible on both bone and ink. */

a:focus-visible,
button:focus-visible,
.kg-btn:focus-visible { 
  outline: 2px solid var(--h-scarlet);
  outline-offset: 3px;
  border-radius: 2px;
   }

.h-on-ink a:focus-visible,
.h-on-ink button:focus-visible { outline-color: var(--h-bone); }

/* ---- 3. Buttons — label is ALWAYS white ------------------------------- */

/* Prefixed .gh-content a.h-btn (0,2,1) so it beats `.gh-content a` (0,1,1),
   which would otherwise repaint the label scarlet and add the link underline. */

.h-btn,
.gh-content a.h-btn,
.gh-content a.h-btn:hover,
.gh-content a.h-btn:visited,
.gh-content .kg-button-card .kg-btn,
.kg-btn.kg-btn-accent { 
  display: inline-block;
  font-family: var(--h-util);
  font-weight: 600;
  font-size: var(--h-t-sm);
  letter-spacing: 0.02em;
  background: var(--h-oxblood);
  color: var(--h-btn-label);
  border: 0;
  border-radius: 2px;
  padding: 0.9em 1.6em;
  text-decoration: none;
  background-image: none;
  transition: transform 200ms var(--h-ease), background 200ms var(--h-ease);
   }

.h-btn:hover,
.gh-content a.h-btn:hover,
.gh-content .kg-button-card .kg-btn:hover,
.kg-btn.kg-btn-accent:hover { 
  background: var(--h-scarlet);
  color: var(--h-btn-label);
  transform: translateY(-2px);
   }

/* On the oxblood band the fill inverts, but the label still must not be a link
   colour — bone on oxblood would vanish, so the fill goes bone and the text ink. */

.h-band .kg-btn,
.h-band .h-btn,
.gh-content .h-band a.h-btn { background: var(--h-bone); color: var(--h-oxblood); }

.h-band .kg-btn:hover,
.h-band .h-btn:hover,
.gh-content .h-band a.h-btn:hover { background: #fff; color: var(--h-oxblood); }

/* ---- 4. Koenig native card styling ------------------------------------- */

/* Callout cards: fully self-styled here so they render on all-HTML-card pages
   as well as native ones. Kept loud — editorial "do not ship" warnings. */

.gh-content {
  .kg-callout-card { 
    display: flex;
    align-items: center;
    gap: 0.8em;
    padding: 1.15em 1.5em;
    border-radius: 3px;
    border-left: 4px solid var(--h-oxblood);
    font-family: var(--h-util);
    color: var(--h-ink);
    background: var(--h-bone-deep);
   }
  .kg-callout-emoji { font-size: 1.4em; line-height: 1; flex: 0 0 auto; }
  .kg-callout-text { font-size: var(--h-t-sm); line-height: 1.5; color: var(--h-ink); }
  .kg-callout-card-blue { background: color-mix(in srgb, #3f6ea5 15%, var(--h-bone)); }
  .kg-callout-card-yellow { background: color-mix(in srgb, #c69214 18%, var(--h-bone)); }
  .kg-callout-card-red { 
    background: color-mix(in srgb, var(--h-oxblood) 10%, var(--h-bone));
    border-left-color: var(--h-oxblood);
   }
  .kg-callout-card-grey { background: var(--h-bone-deep); }
  /* Full-bleed plate: edge-to-edge image, generous air above and below. */
  .kg-image-card.kg-width-full { margin-top: 4.5rem; margin-bottom: 4.5rem; }
  .kg-image-card.kg-width-wide { margin-top: 3rem; margin-bottom: 3rem; }
  figure.kg-image-card img { border-radius: 2px; }
  /* Quote pattern: large italic Newsreader, oxblood rule on the left. */
  blockquote { 
    font-family: var(--h-display);
    font-style: italic;
    font-size: var(--h-t-lead);
    line-height: 1.35;
    color: var(--h-ink);
    border-left: 3px solid var(--h-oxblood);
    padding-left: 1.4rem;
    margin-left: 0;
   }
  /* Divider -> ridgeline, never a hard rule. Layered soft curves. */
  hr { 
    border: 0;
    height: 64px;
    margin: 3.5rem 0;
    background: none;
    position: relative;
   }
  hr::before,
  hr::after { 
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
   }
  hr::before { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 64' preserveAspectRatio='none'%3E%3Cpath d='M0 40 C 300 8 500 56 700 34 C 900 14 1050 44 1200 30' fill='none' stroke='%23DFD8CC' stroke-width='2'/%3E%3C/svg%3E");
    opacity: 0.9;
    transform: translateY(var(--h-ridge-a, 0));
   }
  hr::after { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 64' preserveAspectRatio='none'%3E%3Cpath d='M0 30 C 280 52 520 12 760 36 C 960 54 1080 24 1200 42' fill='none' stroke='%236E1416' stroke-width='1.5'/%3E%3C/svg%3E");
    opacity: 0.35;
    transform: translateY(var(--h-ridge-b, 0));
   }
}

/* Shadows on photographs only. box-shadow follows the element box, not the
   image's alpha, so any transparent-PNG logo would get a grey rectangle
   behind it — every logo and wordmark is deliberately excluded below. */

.gh-content :is(
  .kg-image-card img,
  .h-two-media img,
  .h-film-still img,
  .h-media-frame img,
  .h-cards .h-card img,
  .h-product img
) { box-shadow: var(--h-shadow-img); }

.post-card img { box-shadow: var(--h-shadow-img); }

/* ---- 5. Shared section scaffolding ------------------------------------- */

.h-sec { padding-block: var(--h-gap-sec); }

.h-sec-inner { 
  max-width: var(--h-container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
   }

.h-two { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--h-gap-cols);
  align-items: start;
   }

.h-two.h-two-mid { align-items: center; }

@media (max-width: 768px) { .h-two { grid-template-columns: 1fr; } }

.h-two-up { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--h-gap-cols);
  align-items: center;
  max-width: var(--h-wide);
  margin-inline: auto;
   }

.h-two-up.h-flip > :first-child { order: 2; }

.h-two-up img { width: 100%; height: auto; border-radius: 2px; }

.h-two-media img { 
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 2px;
   }

.h-media-frame img { width: 100%; height: auto; display: block; border-radius: 3px; }

.h-media-frame .kg-callout-card { width: 100%; }

.h-body-copy p { margin: 0 0 1.1rem; }

.h-body-copy .h-btn { margin-top: 0.5rem; }

/* Rubric / eyebrow — Archivo, uppercase, oxblood. */

.gh-content {
  .h-rubric,
  .h-kicker { 
    font-family: var(--h-util);
    text-transform: uppercase;
    font-size: var(--h-t-xs);
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--h-oxblood);
    margin: 0 0 0.75rem;
    display: block;
   }
  /* Section headings. */
  .h-colhead { 
    font-family: var(--h-display);
    font-weight: 500;
    font-size: var(--h-t-h2);
    margin: 0 0 1rem;
    color: var(--h-oxblood);
   }
  .h-colhead-lg { 
    font-family: var(--h-display);
    font-weight: 500;
    font-size: var(--h-t-h1);
    margin: 0 0 1rem;
    color: var(--h-oxblood);
   }
}

.h-on-ink .h-colhead { color: var(--h-scarlet); }

/* Lead paragraph, source line, quiet note. */

.gh-content {
  .h-lead { font-size: var(--h-t-lead); line-height: 1.5; }
  .h-source { 
    font-family: var(--h-util);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: var(--h-t-xs);
    color: var(--h-ink-soft);
    margin-top: 1rem;
   }
  .h-note,
  .h-method,
  .h-mustache { font-size: clamp(1.3px,--h-t-sm, 1.6px); line-height: 1.6; color: var(--h-ink-soft);}
}

/* Text on ink / dusk backgrounds. */

.h-on-ink :is(h1,
h2,
h3,
h4,
p,
li,
.h-stat-figure,
.h-def-term) { color: var(--h-bone); }

.h-on-ink :is(.h-stat-source,
.h-source,
.h-def-pron) { color: color-mix(in srgb, var(--h-bone) 68%, transparent); }

.h-sec-dark { background: var(--h-ink); }

.h-sec-oxblood { background: var(--h-oxblood); }

.h-sec-dusk { background: var(--h-dusk); }

.h-dusk { background: var(--h-dusk); color: var(--h-bone); }

.h-dusk h2,
.h-dusk h3 { color: var(--h-bone); }

/* Ridgeline transition dividers, full width. */

/* The SVG fills one half of the box; the other half is transparent and shows
   this element's own background. So a ridge's background must match whichever
   section sits on the transparent side — bone by default, .h-ridge--ink when
   the open half faces a dark section. */

.h-ridge {
  display: block;
  width: 100%;
  height: clamp(48px, 6vw, 90px);
  line-height: 0;
  background: var(--h-bone);
}

.h-ridge--ink { background: var(--h-ink); }

.h-ridge svg { display: block; width: 100%; height: 100%; }

/* Band — full-width oxblood, bone text, one button. Closers / CTAs. */

.h-content > .h-band.h-full,
.h-band {
  background: var(--h-oxblood);
  color: var(--h-bone);
  text-align: center;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: var(--h-gap-sec) 6vw;
}

.gh-content .h-band h2 { color: var(--h-bone); margin: 0 0 0.75rem; }

.gh-content .h-band p { 
  margin: 0 auto;
  color: var(--h-bone);
  font-family: var(--h-body);
  font-size: var(--h-t-base);
   }

.h-band .h-placeholder { max-width: 34rem; margin: 1.5rem auto 0; text-align: left; }

/* Card row — two or three across, image top, name, one line. */

.h-cards { 
  display: grid;
  gap: var(--h-gap-cols);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: var(--h-wide);
  margin-inline: auto;
   }

.h-cards {
  .h-card { transition: transform 200ms var(--h-ease); }
  .h-card:hover { transform: translateY(-2px); }
  .h-card img { width: 100%; height: auto; border-radius: 2px; }
}

.gh-content {
  .h-cards .h-card h3 { font-size: var(--h-t-h3); margin: 0.8rem 0 0.2rem; }
  .h-cards .h-card p { font-size: var(--h-t-sm); color: var(--h-ink-soft); margin: 0; }
  /* Standalone quote block. */
  .h-quote { 
    font-family: var(--h-display);
    font-style: italic;
    font-size: var(--h-t-lead);
    line-height: 1.3;
    border-left: 3px solid var(--h-oxblood);
    padding-left: 1.4rem;
    max-width: var(--h-measure);
    margin-inline: auto;
   }
}

.h-quote cite { 
  display: block;
  font: 600 var(--h-t-xs)/1 var(--h-util);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--h-ink-soft);
  font-style: normal;
  margin-top: 1rem;
   }

/* ---- 6. Hero ------------------------------------------------------------ */

/* Full-bleed image or video, ink overlay, Pale Blue Dot logo top-left, white
   wordmark centered. The only place the white wordmark is allowed.

   NOTE the border-radius: inherit on ::after. The hero curves its bottom edge
   (see the Vimeo hero block at the end of this file), and border-radius clips
   the border box — but ::after is inset: 0, which resolves against the padding
   box and is therefore square. Without inherit it paints a dark strip into the
   corners the curve removed. */

.h-hero { 
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(58vh, 78vh, 88vh);
  padding: clamp(4rem, 12vh, 9rem) 6vw;
  background: var(--h-ink);
  color: var(--h-bone);
  overflow: hidden;
   }

.h-hero::after { 
  content: "";
  position: absolute;
  inset: 0;
  background: var(--h-ink);
  opacity: 0.55;
  z-index: 1;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
   }

.h-hero > * { position: relative; z-index: 2; }

.h-hero-media { 
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
   }

.h-hero-wordmark { width: min(72vw, 620px); height: auto; display: block; margin: 0 auto; }

.gh-content .h-hero .h-hero-line { 
  font-family: var(--h-display);
  font-weight: 500;
  font-size: var(--h-t-h2);
  line-height: 1.2;
  max-width: 24ch;
   }


/* ---- 7. Statistic ------------------------------------------------------- */

.h-stat { text-align: center; max-width: var(--h-wide); margin-inline: auto; }

.gh-content {
  .h-stat-figure { 
    font-family: var(--h-display);
    font-weight: 600;
    font-size: var(--h-t-hero);
    line-height: 0.98;
    color: var(--h-ink);
    margin: 0;
   }
  .h-stat-lead { 
    font-family: var(--h-display);
    font-weight: 400;
    font-size: var(--h-t-lead);
    line-height: 1.3;
    max-width: 32ch;
    margin: 1.25rem auto 0;
   }
  .h-stat-source { 
    font-family: var(--h-util);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: var(--h-t-xs);
    color: var(--h-ink-soft);
    margin-top: 1rem;
   }
}

.h-stat-band { background: var(--h-ink); padding-block: clamp(4rem, 12vh, 8rem); }

/* ---- 8. Motion Blur (removed) ------------------------------------------------------- */

/* ---- 9. /community ------------------------------------------------------ */

/* Dictionary definition block. */

.gh-content {
  .h-def-term { 
    font-family: var(--h-display);
    font-weight: 600;
    font-size: var(--h-t-hero);
    line-height: 1;
    margin: 0;
   }
  .h-def-pron { 
    font-family: var(--h-util);
    letter-spacing: 0.08em;
    color: var(--h-ink-soft);
    font-size: var(--h-t-sm);
    margin: 0.5rem 0 1.25rem;
   }
  .h-def-body { font-size: var(--h-t-base); line-height: 1.65; }
  .h-help h3 { 
    font-family: var(--h-display);
    font-weight: 500;
    font-size: var(--h-t-h3);
    margin: 0 0 1rem;
   }
}

.h-rose { 
  background: color-mix(in srgb, var(--h-oxblood) 8%, var(--h-bone));
  border: 1px solid color-mix(in srgb, var(--h-oxblood) 20%, transparent);
  border-radius: 4px;
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
   }

.h-rose p { margin-top: 0; }

.h-rose .h-btn { align-self: flex-end; margin-top: 1.25rem; }

/* Full-bleed plate. */

.h-plate img { 
  display: block;
  width: 100%;
  height: min(46vh, 520px);
  object-fit: cover;
  border-radius: 0;
   }

.h-plate-tall img { height: min(66vh, 640px); }

/* Reclamation line — largest type on the site, centered, generous air. */

.h-reclaim { text-align: center; padding-block: clamp(4rem, 12vh, 9rem); }

.gh-content .h-reclaim h2 { 
  font-family: var(--h-display);
  font-weight: 500;
  font-size: var(--h-t-h1);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin: 0 auto;
  color: var(--h-ink);
  text-wrap: balance;
   }

.gh-content .h-reclaim p { max-width: 40ch; margin: 1.75rem auto 0; color: var(--h-ink-soft); }

/* Reclamation paired with the story invitation — two columns, vertically
   centred against each other. Neither column is width-capped, so both fill
   their grid cell. */

.h-reclaim-pair .h-two { align-items: center; }

.h-reclaim-col h2 { max-width: none; }

.gh-content .h-reclaim-col p { max-width: none; }

.gh-content .h-invite-col p { font-size: var(--h-t-base); }

.h-invite-col .h-btn { margin-top: 1.5rem; }

/* Story invitation — centered, constrained to the measure. */

.h-invite { 
  text-align: center;
  max-width: var(--h-measure);
  margin-inline: auto;
  padding-inline: 1.25rem;
   }

.gh-content .h-invite h2 { margin: 0 0 1rem; }

.gh-content .h-invite p { margin: 0 auto 1.1rem; }

.h-invite .h-btn { margin-top: 0.75rem; }

/* Store — lead-in headings, then three-across card row.
   Bone ground inside an oxblood frame. */

.h-store { 
  border: 12px solid var(--h-oxblood);
  max-width: var(--h-container);
  margin-inline: auto;
  padding: var(--h-gap-sec) 0;
   }

.h-store-lead { text-align: left; margin-bottom: clamp(2rem, 5vw, 3.5rem); }

.gh-content {
  .h-store-lead h2 { margin: 0 0 0.4rem; color: var(--h-oxblood); }
  .h-store-lead h3 { 
    font-family: var(--h-display);
    font-weight: 500;
    font-size: var(--h-t-lead);
    margin: 0.1rem 0;
    color: var(--h-ink-soft);
    text-align: center;
   }
  .h-store h2 { text-align: center; margin: 0 0 clamp(1.5rem, 4vw, 2.5rem); }
}

.h-cards3 { 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--h-gap-cols);
   }

@media (max-width: 768px) { .h-cards3 { grid-template-columns: 1fr; max-width: 22rem; margin-inline: auto; } }

.h-product { text-align: center; transition: transform 200ms var(--h-ease); }

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

.h-product img { 
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
  background: var(--h-bone-deep);
   }

.gh-content .h-product h3 { 
  font-family: var(--h-display);
  font-weight: 500;
  font-size: var(--h-t-h3);
  margin: 0.85rem 0 0.15rem;
   }

.h-product .h-price { 
  font-family: var(--h-util);
  font-weight: 600;
  font-size: var(--h-t-sm);
  color: var(--h-oxblood);
  letter-spacing: 0.04em;
   }

.gh-content a.h-product,
.gh-content a.h-product h3,
.gh-content a.h-product .h-price { text-align: center; }

.gh-content a.h-product,
.gh-content a.h-product:hover,
.gh-content a.h-product:visited {
  background: none;
  background-image: none;
  text-decoration: none;
  padding-bottom: 0;
}

.h-store-foot { text-align: center; margin-top: clamp(1.5rem, 4vw, 2.5rem); }

.h-store .h-store-foot .h-btn,
.h-store .h-store-foot .h-btn:hover { font-size: var(--h-t-base); padding: 1em 2rem; }

/* Slab — bowed dark panel around the trailer. */

.h-slab { 
  background: var(--h-ink);
  width: 90vw;
  margin-inline: auto;
  border-radius: 50% / clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(3rem, 8vh, 5.5rem);
  overflow: hidden;
   }

.h-slab-inner { 
  max-width: 880px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
   }

.gh-content .h-slab-title { 
  color: var(--h-bone);
  text-align: center;
  text-wrap: balance;
  font-size: var(--h-t-h2);
  max-width: 30ch;
  margin: 0 auto clamp(2rem, 5vh, 3.5rem);
   }

.h-store { margin-bottom: 0; }
.h-content > .h-band.h-full { margin-top: 0; }
/* ---- 10. /movie --------------------------------------------------------- */

/* Trailer slot placeholder fills its column. */

.h-two .kg-callout-card { height: 100%; box-sizing: border-box; align-items: center; }

.h-film-light { background: color-mix(in srgb, var(--h-oxblood) 4%, var(--h-bone)); }

.h-film-light + .h-film-light { padding-top: 0; }

.h-film-still img { 
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 2px;
   }

.h-film-cta { text-align: center; margin-top: clamp(2rem, 5vh, 3.5rem); }

.h-film-ask { text-align: center; }

.gh-content .h-film-ask h2 { 
  font-size: var(--h-t-h1);
  font-weight: 600;
  max-width: 24ch;
  margin: 0 auto;
  line-height: 1.15;
   }

/*Teaser*/
.h-laurel {
  position: absolute; z-index: 3;
  top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem);
  width: clamp(96px, 11vw, 150px); height: auto;
}

/* Upcoming screenings — horizontal scroller of white cards on the rose ground.
   Full-bleed via the same viewport escape .h-film-white / .h-film-rose use,
   margin-block: 0 so it butts flush against the section above.

   Rules are prefixed .gh-content where London would otherwise win: it sets
   `.gh-content ul { padding-left: 2.8rem }` (0,1,1) and
   `.gh-content :is(li+li, …) { margin-top: .8rem }` (0,1,2) — the latter makes
   the first card taller than the rest under align-items: stretch. */

.h-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.h-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.h-content > .h-screenings,
.h-content > .h-screenings.h-full,
.h-screenings {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-block: 0;
  background: #FFFFFF;
  padding-block: clamp(3.5rem, 9vh, 6rem) clamp(4rem, 10vh, 7rem);
}

.h-screen-inner { max-width: var(--h-container); margin-inline: auto; }

.gh-content .h-screenings .h-screen-head {
  font-family: var(--h-display);
  font-size: var(--h-t-h1);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-wrap: balance;
  color: var(--h-oxblood);
  max-width: 20ch;
  margin: 0 auto clamp(2.5rem, 5vh, 3.5rem);
}

/* Scroller */

.h-screen-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(3vw, 1.5rem);
  padding-block-end: 1.2rem;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--h-ink) 28%, transparent) transparent;
}

.h-screen-scroller:focus-visible { outline: 2px solid var(--h-scarlet); outline-offset: 4px; }
.h-screen-scroller::-webkit-scrollbar { height: 6px; }
.h-screen-scroller::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--h-ink) 28%, transparent);
  border-radius: 3px;
}

.gh-content .h-screen-track {
  list-style: none;
  margin: 0;
  padding: 0 max(3vw, 1.5rem);
  display: flex;
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: stretch;
}

.gh-content .h-screen-track > li + li { margin-top: 0; }

/* Card */

.h-screen-card {
  flex: 0 0 clamp(24rem, 78vw, 34rem);
  scroll-snap-align: start;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid var(--h-oxblood);
  border-radius: 3px;
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  box-shadow:
    0 1px 2px color-mix(in srgb, var(--h-ink) 8%, transparent),
    0 12px 28px -12px color-mix(in srgb, var(--h-ink) 26%, transparent);
}

.h-screen-id { min-height: 4.2em; margin-bottom: 0.4rem; }

.gh-content .h-screen-card .h-screen-title {
  font-family: var(--h-display);
  font-size: var(--h-t-h3);
  font-weight: 500;
  line-height: 1.15;
  color: var(--h-ink);
  margin: 0;
  text-wrap: pretty;
}

.gh-content .h-screen-card .h-screen-host {
  font-family: var(--h-util);
  font-size: var(--h-t-xs);
  letter-spacing: 0.04em;
  color: var(--h-oxblood);
  margin: 0.5rem 0 0;
}

.h-screen-card :is(.h-screen-where, .h-screen-when) {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.5rem;
  font-family: var(--h-util);
  font-size: var(--h-t-xs);
  letter-spacing: 0.03em;
  color: var(--h-ink-soft);
  text-align: left;
}

.h-screen-when.is-tba { color: color-mix(in srgb, var(--h-ink-soft) 70%, transparent); }

.h-screen-ico { width: 1.15em; height: 1.15em; flex: none; }

/* Card action — outlined, not filled. One quiet action per dated card instead
   of five identical filled buttons competing with the section's own CTA. */

.gh-content .h-screenings .h-screen-card a.h-screen-add {
  display: block;
  width: 100%;
  margin-top: auto;
  padding-block: 0.7rem;
  font-family: var(--h-util);
  font-size: var(--h-t-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  background: #FFFFFF;
  color: var(--h-oxblood);
  border: 1px solid color-mix(in srgb, var(--h-oxblood) 35%, transparent);
  border-radius: 2px;
  transition: background 160ms var(--h-ease), border-color 160ms var(--h-ease), color 160ms var(--h-ease);
}

.gh-content .h-screenings .h-screen-card a.h-screen-add:hover {
  background: var(--h-scarlet);
  border-color: var(--h-scarlet);
  color: #FFFFFF;
}

.gh-content .h-screenings .h-screen-card a.h-screen-add:focus-visible {
  background: var(--h-scarlet);
  border-color: var(--h-scarlet);
  color: #FFFFFF;
  outline: 2px solid var(--h-oxblood);
  outline-offset: 2px;
}

/* Signup — the section's single CTA, on its own white panel so it reads as a
   deliberate element rather than text floating on the band. */

.h-screen-form {
  max-width: 54rem;
  margin: clamp(2.5rem, 5vh, 3.5rem) auto 0;
  background: #FFFFFF;
  border-radius: 3px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
}

.gh-content .h-screen-form .h-screen-form-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--h-util);
  font-size: var(--h-t-xs);
  letter-spacing: 0.03em;
  color: var(--h-ink-soft);
  margin: 0 0 1.1rem;
  text-wrap: balance;
}

.h-screen-form-label .h-screen-ico { color: var(--h-oxblood); }

.h-screen-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.h-screen-form-field { flex: 1 1 26rem; min-width: 0; display: block; }

.h-screen-form-row input {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--h-util);
  font-size: var(--h-t-xs);
  padding: 0.85rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--h-oxblood) 18%, transparent);
  border-radius: 2px;
  background: #FDFCFA;
  color: var(--h-ink);
}

.h-screen-form-row input:focus-visible { outline: 2px solid var(--h-oxblood); outline-offset: 1px; }
.h-screen-form-row button.h-btn { flex: 0 0 auto; }

/* Ghost toggles .loading / .success / .error on the form element itself.
   Without these the messages render permanently. */

.h-screen-form .h-form-msg {
  display: none;
  margin: 1rem 0 0;
  font-family: var(--h-util);
  font-size: var(--h-t-xs);
}
.h-screen-form.success .h-form-success { display: block; color: var(--h-oxblood); }
.h-screen-form.error   .h-form-error   { display: block; color: var(--h-scarlet); }
.h-screen-form.loading button.h-btn    { opacity: 0.6; pointer-events: none; }

@media (prefers-reduced-motion: no-preference) {
  .h-screen-scroller { scroll-behavior: smooth; }
}

.h-form .h-captcha {
  margin: 1.75rem 0 0;
  max-width: 100%;
  overflow-x: auto;
}

@media (max-width: 900px) { .h-film-lede .h-two { grid-template-columns: 1fr; } }
/* ---- 11. /meet-the-heathens --------------------------------------------- */

.h-mth-intro { text-align: center; padding: var(--h-gap-sec) 6vw 0; }

.gh-content .h-mth-intro h1 { 
  color: var(--h-oxblood);
  font-weight: 500;
  font-size: var(--h-t-h1);
  max-width: 25ch;
  margin: 0 auto;
   }

.gh-content .h-mth-intro .h-subtitle { 
  font-family: var(--h-display);
  font-style: italic;
  color: var(--h-ink-soft);
  font-size: var(--h-t-lead);
  margin: 0.75rem 0 0;
   }

/* Support line — quiet but genuinely reachable. Readable Archivo at a real
   size with live links; deliberately NOT tiny greyed disclaimer text. */

.h-support { padding-block: clamp(1.75rem, 4vw, 2.75rem); }

.gh-content .h-support .h-support-line { 
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  font-family: var(--h-util);
  font-size: var(--h-t-sm);
  line-height: 1.65;
  color: var(--h-ink);
   }

.h-support-line a { font-weight: 600; }

/* Participant rows — full-bleed split: darkened portrait carrying the pull
   quote + name, paired with the video. Video side alternates via .h-flip. */

.h-participant { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(360px, 58vh, 560px);
  background: var(--h-ink);
   }

.h-participant-photo { 
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
   }

.h-participant-video .h-embed-frame { width: 100%; }

.h-embed-frame .js-reframe {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important; padding: 0 !important;
}

.h-participant-photo::before { 
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,18,18,0.9) 0%, rgba(18,18,18,0.35) 55%, rgba(18,18,18,0.15) 100%);
   }

.h-participant-caption { position: relative; z-index: 1; }

.gh-content .h-participant-photo .h-pullquote { 
  font-family: var(--h-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--h-t-h3);
  line-height: 1.2;
  color: var(--h-bone);
  margin: 0;
  max-width: none;
   }

.gh-content .h-participant-photo .h-participant-name { 
  font-family: var(--h-util);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: var(--h-t-xs);
  color: var(--h-bone);
  opacity: 0.92;
  margin: 0.9rem 0 0;
   }

.h-participant-video { 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--h-ink);
   }

.h-participant-video .kg-callout-card { width: 100%; max-width: 30rem; }

/* On ink, depth comes from a darker shadow, not a lighter one. */

.h-participant-video .h-embed-frame { box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.8); }

.h-participant.h-flip .h-participant-photo { order: 2; }

@media (max-width: 768px) {
  .h-participant { grid-template-columns: 1fr; }
  .h-participant.h-flip .h-participant-photo { order: 0; }  /* photo first on mobile */
  .h-participant-photo { min-height: 340px; }
}

/* Closer + reel — both on bone. */

.h-content > .h-mth-closer,
.h-mth-closer { background: var(--h-bone) !important; text-align: center; }

.h-mth-closer .h-btn { display: block; width: fit-content; margin: 1.25rem auto 0; }

.h-content > .h-mth-more,
.h-content > .h-mth-more.h-full { background: var(--h-bone) !important; }

.h-content > .h-mth-more.h-full {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-block: 0;
}

.gh-content .h-mth-closer h2 {
  font-size: var(--h-t-h2);
  margin: 0 0 1.25rem;
  text-align: center;
}

.gh-content .h-mth-more > .h-sec-inner > h2 {
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

/* Both sections were on dark grounds, so anything inheriting .h-on-ink needs
   pulling back to ink. If you remove h-on-ink from the markup, this is
   redundant and can go. */

.gh-content .h-mth-closer :is(h1, h2, h3, p),
.gh-content .h-mth-more > .h-sec-inner > :is(h1, h2, h3, p) { color: var(--h-ink); }

/* Horizontal video reel — scroll-snapped, keyboard scrollable. Breaks out of
   .h-sec-inner so it runs the full viewport width and items scroll off both
   edges.

   The vertical padding is load-bearing: overflow-x: auto forces overflow-y to
   compute as auto too, so the reel clips vertically whether or not you ask it
   to — and the facade shadows extend ~22px below each item. */

.h-reel {
  display: flex;
  gap: clamp(1rem, 2vw, 1.75rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0.75rem clamp(1.25rem, 4vw, 3rem) 2.25rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--h-ink) 30%, transparent) transparent;
}

.h-reel-item {
  flex: 0 0 clamp(300px, 46vw, 720px);
  scroll-snap-align: start;
}

.h-reel-title {
  font-family: var(--h-display); font-style: italic;
  font-size: var(--h-t-base); color: var(--h-ink);
  margin: 0.75rem 0 0; text-align: left;
}

.h-reel::-webkit-scrollbar { height: 6px; }
.h-reel::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--h-ink) 30%, transparent); }
.h-reel::-webkit-scrollbar-track { background: color-mix(in srgb, var(--h-ink) 8%, transparent); }

.h-content > .h-mth-intro,
.h-content > .h-support,
.h-content > .h-participant,
.h-content > .h-mth-closer,
.h-content > .h-mth-more {
  margin-block: 0 !important;
  border: 0 !important;
}

.h-page-meet-the-heathens .h-content > * { margin-block: 0 !important; }

/* Video facade — a poster with a play button; the iframe mounts on click. */

.h-vfacade {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  background: var(--h-ink) center/cover no-repeat;
  border: 0; padding: 0; cursor: pointer; display: block;
  border-radius: 3px; overflow: hidden;
}

.h-vfacade::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(18,18,18,0.62) no-repeat center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-size: 28px 28px;
  transition: background-color 200ms var(--h-ease);
}

.h-vfacade:hover::after { background-color: var(--h-oxblood); }

/* The story posters carry their own titles, so the reel drops the play
   overlay and lets the frame speak for itself. */
.h-reel .h-vfacade::after { content: none; }

/* The disc was the only click cue, so the poster lifts slightly instead. */
.h-reel .h-vfacade {
  transition: transform 220ms var(--h-ease), box-shadow 220ms var(--h-ease);
}
.h-reel .h-vfacade:hover,
.h-reel .h-vfacade:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--h-shadow-video);
}
.h-reel .h-vfacade:focus-visible {
  outline: 2px solid var(--h-bone);
  outline-offset: 3px;
}

@media (pointer: coarse) {
  .h-reel .h-vfacade::after {
    content: "";
    top: auto; left: auto; right: 1rem; bottom: 1rem;
    transform: none;
    width: 40px; height: 40px;
    background-size: 17px 17px;
  }
}



/* ---- 12. /research ------------------------------------------------------- */

/* Everything nests inside .h-page-research. Bare selectors are descendants;
   compound ones like &.h-expect target the section element itself.
   Geometry: 1500px container, 5rem gap, 48rem text column — except pressure
   and begins, which run at 1600px. */

.h-page-research {

  /* ---- Geometry --------------------------------------------------------- */
  .h-sec-inner { max-width: 1500px !important; padding-inline: 3rem !important; }
  .h-two { gap: 5rem !important; }
  .h-body-copy { max-width: 48rem !important; margin-inline: auto; }

  /* Section padding: card 1 hugs the header, the rest get a normal top. */
  .h-sec { padding-block: clamp(0.5rem, 2vh, 1.5rem) clamp(3rem, 8vh, 6rem) !important; }
  .h-expect.h-sec,
  .h-pressure.h-sec { padding-block: clamp(2rem, 5vh, 3.5rem) clamp(3rem, 8vh, 6rem) !important; }
  .h-begins.h-sec { padding-block: clamp(3rem, 8vh, 6rem); }

  /* ---- Headings --------------------------------------------------------- */
  /* Base: One in Three and Where the film begins keep the serif opener. */
  .h-colhead {
    font-size: clamp(3.5rem, 6.5vw, 5.75rem) !important;
    line-height: 1.02 !important;
    margin: 0 0 1.5rem !important;
  }

  /* Middle sections take the rubric styling. */
  .h-expect .h-colhead,
  .h-pressure .h-colhead,
  .h-rsch .h-colhead,
  .h-sources-title {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    margin: 0 0 1.25rem !important;
  }
  /* The sources heading takes the same rubric styling, plus its own size,
     face and colour — merged from three separate rules. */
  .h-sources-title {
    font-family: var(--h-display);
    font-size: 2rem !important;
    color: #FFFFFF !important;
    margin: 0 0 1.75rem !important;
  }
  .h-expect .h-colhead,
  .h-pressure .h-colhead { font-size: 2.2rem !important; }
  .h-rsch .h-colhead { font-size: 1.9rem !important; }

    /* The section heading sits in a translucent oxblood banner, one line at
     every width. Tracking comes down from 0.18em and the type scales with
     the viewport so the line never wraps; under 700px the banner bleeds
     past the 3rem gutter to buy back the width it needs. */
  .h-rsch .h-colhead--full {
    display: block;
    width: fit-content;
    max-width: none;
    margin: 0 auto clamp(2.5rem, 5vh, 3.5rem) !important;
    padding: 0.6em 1.1em;
    border-radius: 999px;
    background: color-mix(in srgb, var(--h-oxblood) 9%, transparent);
    box-shadow: 0 1px 2px color-mix(in srgb, var(--h-ink) 10%, transparent),
                0 10px 24px -14px color-mix(in srgb, var(--h-oxblood) 45%, transparent);
    white-space: nowrap;
    font-size: clamp(1rem, 3.1vw, 1.9rem) !important;
    letter-spacing: 0.08em !important;
    line-height: 1.3 !important;
    text-align: center;
    color: var(--h-oxblood);
  }
  @media (max-width: 700px) {
    .h-rsch .h-colhead--full {
      margin-inline: -2rem !important;
      padding-inline: 0.8em;
    }
  }

  .h-expect,
  .h-pressure,
  .h-rsch {
    box-shadow: 0 1px 2px color-mix(in srgb, var(--h-ink) 6%, transparent),
                0 14px 32px -18px color-mix(in srgb, var(--h-ink) 22%, transparent);
  }

  /* ---- Body copy -------------------------------------------------------- */
  .h-body-copy p { font-size: 2rem; line-height: 1.5 !important; max-width: none; margin-left: 0 !important; }
  .h-expect .h-body-copy p,
  .h-pressure .h-body-copy p { font-size: 1.6rem !important; line-height: 1.55 !important; }
  .h-begins-lead p { font-size: 1.6rem !important; line-height: 1.55 !important; margin: 0 0 2.25rem !important; }

  .research__cite { font-size: 1rem !important; line-height: 1.55; opacity: 0.7; max-width: 42ch; }
  .h-expect .research__cite { font-size: 0.95rem !important; }

  /* ---- Charts and captions ---------------------------------------------- */
  .h-chart { display: block; max-width: 620px; margin: 0 auto !important; height: auto; }
  .h-pressure .h-chart3 { display: block; max-width: 48rem; width: 100%; margin: 0 auto !important; }
  .h-chart2 svg,
  .h-chart3 svg { width: 100%; height: auto; display: block; }
  .h-expect .h-chart2 .h-mustache { display: block; max-width: 560px; margin: 0 auto !important; font-size: 1rem !important; }

  /* ---- Paired blurbs and the apparatus ---------------------------------- */
  .h-rsch {
    .h-two { align-items: center; }
    .h-stack { display: flex !important; flex-direction: column !important; gap: 3rem; }
    .h-reasons { list-style: none; padding: 0; margin: 0 0 2rem; font-family: var(--h-display); font-size: 1.25rem !important; color: var(--h-ink-soft); }
    .h-reasons li { color: var(--h-oxblood) !important; font-weight: 600 !important; padding: 0.75rem 0; border-bottom: 1px solid var(--h-bone-deep); }
    .h-reasons li:first-child { border-top: 1px solid var(--h-bone-deep); }
    .h-rubric,
    .h-kicker { font-family: var(--h-util); text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.35rem !important; font-weight: 700; color: var(--h-oxblood) !important; margin: 0 0 0.75rem !important; max-width: none; }
    .h-note,
    .h-method { font-size: 1.35rem !important; line-height: 1.65; color: var(--h-ink-soft); margin: 0; max-width: none; }
    .h-note { font-style: italic; }
  }

  /* ---- Where the film begins -------------------------------------------- */
  .h-begins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .h-begins-lead { max-width: 48rem; margin-inline: auto; }
  .h-begins-cta { display: flex; justify-content: center; }
  .h-btn--xl { font-size: 1.75rem !important; padding: 1.1em 2.2em !important; border-radius: 3px; }

  /* ---- Data sources, blends into the footer ------------------------------ */
  .h-sources {
    background: var(--h-ink);
    color: #FFFFFF;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(3rem, 8vh, 5.5rem) 6vw clamp(1rem, 3vh, 2rem);
    margin-bottom: 0;
  }
  .h-sources-inner { max-width: 1500px; margin: 0 auto; padding-inline: 3rem; }
  .h-sources-list { margin: 0; padding-left: 1.25rem; font-size: 1.15rem; line-height: 1.7; color: #FFFFFF; }
  .h-sources-list li { margin-bottom: 0.6rem; color: white; }
  .h-sources-list strong { color: #FFFFFF; font-weight: 700; }

  /* ---- Stacked ---------------------------------------------------------- */
  @media (max-width: 768px) {
    .h-expect .h-body-copy,
    .h-pressure .h-body-copy { order: -1; }
    .h-begins-grid { grid-template-columns: 1fr; gap: 3rem; }
    .h-begins-cta { justify-content: flex-start; }
  }
    /* Bookmark tab with a dashed rule running off to the right. */
  .h-bookmark {
    display: flex; align-items: center; gap: 1.5rem;
    max-width: 1500px; margin: clamp(2rem, 6vh, 4rem) auto clamp(1rem, 3vh, 2rem);
    padding-inline: 3rem;
  }
  .h-bookmark svg { flex: 0 0 auto; display: block; }
  .h-bookmark::after {
    content: ""; flex: 1; height: 0;
    border-top: 1.5px dashed color-mix(in srgb, var(--h-oxblood) 45%, transparent);
  }
    /* The three sections between the bookmark and the fold sit on white,
     inset from the page edges so bone frames them. */
  .h-expect,
  .h-pressure,
  .h-rsch {
    background: #FFFFFF;
    max-width: 1425px;
    margin-inline: auto;
    border-radius: 3px;
  }

  .h-expect + .h-pressure,
  .h-pressure + .h-rsch,
  .h-rsch + .h-rsch { margin-top: 0; }
  .h-expect.h-sec,
  .h-pressure.h-sec { padding-block: clamp(2rem, 5vh, 3.5rem) !important; }
  .h-rsch.h-sec { padding-block: clamp(2rem, 5vh, 3.5rem) !important; }

    /* The apparatus column was overflowing its cell. */
  .h-rsch .h-stack { max-width: 48rem; margin-inline: auto; }
  .h-rsch .h-note,
  .h-rsch .h-method { max-width: 100%; }
  
  /* Page-fold divider — a shallow V, like the corner of a turned page. */
  .h-pagefold {
    display: block; max-width: 1500px;
    margin: clamp(3rem, 8vh, 5rem) auto clamp(2rem, 5vh, 3rem);
    padding-inline: 3rem; line-height: 0;
  }
  .h-pagefold svg { display: block; width: 100%; height: clamp(40px, 5vw, 80px); }
}

/* ---- 13. /support — resources -------------------------------------------- */

.h-support-head { text-align: center; padding: var(--h-gap-sec) 6vw clamp(1rem, 3vw, 2rem); }

.gh-content .h-support-head h1 { 
  color: var(--h-oxblood);
  font-weight: 500;
  font-size: clamp(1.6rem, 5.5vw, 4rem);
  margin: 0 auto;
  max-width: none;
  text-wrap: balance;
  line-height: 1.1;
   }

.gh-content .h-support-head p { 
  max-width: 60rem;
  margin: 1rem auto 0;
  font-size: var(--h-t-lead);
  color: var(--h-ink-soft);
   }

/* Tile grid. --tile keeps the logo box and the caption the same width. */

.h-resources { 
  --tile: 220px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
  max-width: 85rem;
  margin: clamp(2rem, 5vw, 3.5rem) auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
   }

/* Flat tiles, centred. The fixed-height logo box is what makes every caption
   start on the same baseline regardless of each logo's own proportions. */

.h-resources {
  .h-resource { 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background-image: none;
    color: var(--h-ink);
    border: 0;
    padding: 0;
    max-width: var(--tile);
    margin-inline: auto;
   }
  .h-resource-logo { 
    height: clamp(64px, 7vw, 84px);
    width: 100%;
    max-width: var(--tile);
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
   }
  .h-resource-logo img { 
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    --tile: clamp(220px, 70vw, 260px);
   }
  /* Wide wordmarks cover far more area at the same height, so they read as
     oversized next to compact marks. Cap them shorter to even the weight. */
  .h-logo--wide img { max-height: 62%; }
}

.gh-content .h-resources .h-resource-name { 
  font-family: var(--h-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
  color: var(--h-oxblood);
  max-width: var(--tile);
  margin: 0 auto 0.4rem;
   }

.gh-content .h-resources .h-resource-desc { 
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  line-height: 1.5;
  color: var(--h-ink);
  max-width: var(--tile);
  margin: 0 auto;
   }

.h-resources .h-resource:hover .h-resource-name { color: var(--h-scarlet); }

/* ---- 14. /music --------------------------------------------------------- */

.h-music-head { 
  text-align: center;
  padding: var(--h-gap-sec) 6vw clamp(1.25rem, 4vw, 2.25rem);
   }

.h-music-head .h-headrule { max-width: var(--h-wide); margin: 0 auto clamp(1.25rem, 4vw, 2rem); }

.h-music-head .h-headrule img { width: 100%; height: auto; display: block; }

.gh-content .h-music-head h1 { 
  color: var(--h-oxblood);
  font-weight: 500;
  font-size: var(--h-t-h1);
  margin: 0 auto;
  max-width: 16ch;
   }

/* Rose bands (deeper for the featured artist). */

.h-band-rose { background: color-mix(in srgb, var(--h-oxblood) 8%, var(--h-bone)); }

.h-band-rose-deep { background: color-mix(in srgb, var(--h-oxblood) 15%, var(--h-bone)); }

/* Oxblood rule. */

.h-oxrule { text-align: center; padding: clamp(2rem, 5vw, 3.5rem) 0; }

.h-oxrule span { 
  display: inline-block;
  width: min(72%, 56rem);
  height: 2px;
  background: var(--h-oxblood);
   }

/* Heathens Around the World — centered, then a grid of embeds with titles. */

.h-playlist { max-width: 100rem; margin: 0 auto; border-radius: 12px; overflow: hidden; }

.h-playlist iframe { display: block; width: 100%; height: 380px; border: 0; padding-bottom: 1vh; }

.h-around { text-align: center; }

.gh-content .h-around h1,
.gh-content .h-around .h-around-title { 
  color: var(--h-oxblood);
  font-weight: 500;
  font-size: var(--h-t-h1);
  margin: 0 0 0.5rem;
   }

.gh-content .h-around .h-around-sub { 
  font-size: var(--h-t-lead);
  color: var(--h-ink-soft);
  margin: 0 auto clamp(1.25rem, 3vw, 2rem);
   }

.h-around-graphic { max-width: 320px; margin: 0 auto clamp(1.75rem, 4vw, 2.75rem); }

.h-around-graphic img { width: 100%; height: auto; display: block; }

.h-embed-grid { 
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--h-gap-cols);
  max-width: var(--h-wide);
  margin: 0 auto;
   }

@media (max-width: 700px) { .h-embed-grid { grid-template-columns: 1fr; max-width: 32rem; } }

/* aspect-ratio, not the padding-top hack: unambiguous inside any container. */

.h-embed-frame { 
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--h-ink);
  border-radius: 3px;
  overflow: hidden;
   }

.h-embed-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Video frames lift off the page. .h-embed-frame has overflow: hidden, which
   clips its children — its own box-shadow still paints. */

.h-embed-frame,
.h-vfacade,
.h-playlist,
.h-trailer-frame { box-shadow: var(--h-shadow-video); }

/* Exclusions: the hero video fills its container edge to edge, and the modal
   sits on its own dim backdrop. Both would paint a dark rim for nothing. */

.h-hero-video,
.h-hero-video iframe,
.h-trailer-dialog .h-embed-frame { box-shadow: none; }

.gh-content .h-embed-title { 
  font-family: var(--h-display);
  font-weight: 500;
  font-size: var(--h-t-base);
  margin: 0.8rem 0 0.1rem;
  text-align: center;
   }

.gh-content .h-embed-artist { 
  font-family: var(--h-util);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--h-t-xs);
  color: var(--h-ink-soft);
  text-align: center;
  margin: 0;
   }

  .h-band-ink { text-align: center; padding: var(--h-gap-sec) 6vw; }
  .h-band-ink .h-btn { display: inline-block; margin-top: 1.25rem; }



/* ---- 15. Site header ---------------------------------------------------- */

/* White bar spanning the full viewport, large wordmark hard left, nav centred,
   actions hard right.

   DO NOT override .gh-head-inner's display. London's main.min.js measures the
   nav and collapses overflow into a "..." dropdown; changing the layout model
   breaks that measurement and hides every item. If items disappear, the fix is
   a smaller nav font-size or shorter labels. */

.gh-head { 
  background: #FFFFFF;
  /* No full-bleed hack needed — brand.css:100 sets .site-wrapper { padding: 0 },
     so the header already spans the viewport. 100vw would include the scrollbar
     width and overshoot by ~7px on desktop. */
  width: auto;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
  height: auto;
  border-bottom: 0;
  min-height: clamp(72px, 12vw, 128px);
  --head-nav-gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* London pulls the header out of its own .site-wrapper { padding: 6vw } with
   margin: -6vw below 850px. We zero that padding above, so the negative margin
   has nothing to cancel and drags the header — and the logo — off the left
   edge. Matching London's (0,2,1) specificity to neutralise it. */

@media (max-width: 850px) {
  body:not(.is-head-open) .gh-head { margin: 0; }
}

/* Equal outer columns so the centred nav is centred on the page, not merely in
   the leftover space between a wide wordmark and a narrower actions column. */

.gh-head-inner { 
  grid-template-columns: 1fr auto 1fr;
  min-height: clamp(72px, 12vw, 128px);
  max-width: none;
  width: 100%;
  align-items: center;
  padding-block: 1rem;
  padding-inline: clamp(1.5rem, 3vw, 3rem);
   }

.gh-head-logo { text-decoration: none; }

.gh-head-logo img { max-height: clamp(40px, 8vw, 88px); width: auto; }

.gh-head-logo .h-wordmark { 
  font-family: var(--h-display);
  font-weight: 600;
  color: var(--h-ink);
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  line-height: 1;
   }

/* Nav — body serif, centred, current page underlined. The left margin is an
   optical nudge: the wordmark outweighs the actions column, so true centring
   reads as slightly left. */

.gh-head-menu { justify-content: center;}

.gh-head-menu {
  .nav { gap: clamp(1rem, 2vw, 2.25rem); flex-wrap: nowrap; }
  .nav li { margin: 0; }
  .nav a { 
    font-family: var(--h-display);
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
    color: var(--h-ink);
    white-space: nowrap;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: color 200ms var(--h-ease), border-color 200ms var(--h-ease);
   }
  .nav a:hover { color: var(--h-oxblood); }
  .nav-current a { border-bottom-color: var(--h-ink); }
}
.gh-head-inner { grid-template-columns: 1fr auto 1fr; }

/* Join button — matched to the wordmark red, white label. */

.h-join-btn { 
  background: #9E1B1B;
  color: var(--h-btn-label);
  font-family: var(--h-util);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  padding: 0.72em 1.7em;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  background-image: none;
  transition: background 200ms var(--h-ease), transform 200ms var(--h-ease);
   }

.h-join-btn:hover,
.h-join-btn:visited { background: var(--h-scarlet); color: var(--h-btn-label); }

.h-join-btn:hover { transform: translateY(-1px); }

/* Header search icon. The SVG carries hard-coded width/height attributes in
   default.hbs, so it must be sized here rather than via font-size. */

.gh-head-actions { gap: 2rem; }

.gh-head-actions {
  .gh-search { color: var(--h-ink); }
  .gh-search:hover { color: var(--h-oxblood); }
  .gh-search svg { width: 38px; height: 38px; }
  /* Signed-in member chip, replaces the Join button. */
  .h-member-link { 
    display: inline-flex !important;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    background-image: none;
    padding: 0;
    color: var(--h-oxblood);
    font-family: var(--h-util);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1;
    white-space: nowrap;
    transition: color 200ms var(--h-ease);
   }
  .h-member-link:hover { color: var(--h-scarlet); }
  .h-member-avatar { 
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
    display: block;
   }
  .h-member-initial { 
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--h-oxblood);
    color: var(--h-btn-label);
    overflow: hidden;
   }
  .h-member-initial svg { display: block; }
}

@media (max-width: 900px) { .h-member-name { display: none; } }

.gh-head-actions .h-join-btn,
.gh-head-actions .h-join-btn:link,
.gh-head-actions .h-join-btn:visited,
.gh-head-actions .h-join-btn:hover,
.gh-head-actions .h-join-btn:focus { 
  color: #FFFFFF !important;
  text-decoration: none !important;
  background-image: none !important;
   }

/* ---- 16. Site footer ---------------------------------------------------- */

/* Bare essentials: company lockup and legal links on one line, fine print
   beneath a hairline. Full-bleed ink band. Centres and stacks under 700px.
   Contrast on #121212: name 11.97:1, links 9.59:1, fine print 6.76:1. */

.h-foot {
  background: var(--h-ink);
  color: var(--h-bone);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(2.5rem, 6vh, 4rem) 6vw;
  margin-top: 0;
}

.h-foot-inner { max-width: var(--h-wide); margin: 0 auto; }

/* Row 1 — identity left, links right. */

.h-foot-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid color-mix(in srgb, var(--h-bone) 14%, transparent);
}

.h-foot-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.h-foot-logo { height: 44px; width: auto; display: block; flex: none; }

.h-foot-brand-name {
  font-family: var(--h-util);
  font-size: var(--h-t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--h-bone) 88%, transparent);
  transition: color 160ms var(--h-ease);
}

.h-foot-brand:hover .h-foot-brand-name { color: var(--h-bone); }

/* Legal links. */

.h-foot-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.8rem;
}

.h-foot-links a {
  font-family: var(--h-util);
  font-size: var(--h-t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: color-mix(in srgb, var(--h-bone) 78%, transparent);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 160ms var(--h-ease), border-color 160ms var(--h-ease);
}

.h-foot-links a:hover,
.h-foot-links a:focus-visible {
  color: var(--h-bone);
  border-bottom-color: var(--h-bone);
}

/* Row 2 — fine print. */

.h-foot-fine {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.8rem;
  margin: 1.3rem 0 0;
  font-family: var(--h-util);
  font-size: var(--h-t-xs);
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--h-bone) 64%, transparent);
}

@media (max-width: 700px) {
  .h-foot-top   { justify-content: center; text-align: center; }
  .h-foot-brand { flex-direction: column; gap: 0.6rem; }
  .h-foot-links ul { justify-content: center; }
  .h-foot-fine  { justify-content: center; text-align: center; }
}

/* ---- 17. /home ---------------------------------------------------------- */

/* The key art carries the title; align the sentence to the bottom and use a
   bottom-weighted gradient so the baked title stays clear above it. */

.h-home-hero { justify-content: flex-end; }

.h-home-hero::after { 
  opacity: 1;
  background: linear-gradient(to bottom, rgba(18,18,18,0.12) 0%, rgba(18,18,18,0.12) 42%, rgba(18,18,18,0.82) 100%);
   }

.gh-content .h-hero-statement { 
  font-family: var(--h-display);
  font-weight: 400;
  font-size: var(--h-t-lead);
  line-height: 1.45;
  max-width: 40ch;
  margin: 0 auto;
  color: var(--h-bone);
  text-align: center;
   }

.h-trailer-section { padding-block: var(--h-gap-sec); }

.h-trailer-slot { 
  max-width: 880px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
   }

.h-trailer-frame { 
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--h-ink);
  border-radius: 4px;
  padding: 1.5rem;
   }

.h-trailer-frame .kg-callout-card { max-width: 30rem; width: 100%; }

/* ---- 18. Per-page overrides --------------------------------------------- */

/* page.hbs puts h-page-{{slug}} on the article. To resize a whole page,
   retune tokens here rather than adding new rules. Example:
     .h-page-movie { --h-t-h2: clamp(2.4rem, 1.8rem + 2.6vw, 4.2rem); }
   Everything downstream adjusts together and stays in proportion. */

/* Music page — three equal boxes, alternating grounds */
.h-sec-tight { 
  max-width: min(96rem, 94vw);
  margin: 1.5rem auto;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  border-radius: 4px;
   }

.h-sec-tight {
  .h-two { align-items: center; gap: clamp(2rem, 5vw, 4rem); }
  /* Let the media grow with the box instead of stopping at a fixed cap. The
     child combinator targets only the featured video, not the four in the grid. */
  .h-media-frame,
  > .h-two .h-embed-frame { max-width: none; }
  /* Keep text readable even though the box is wide */
  .h-body-copy,
  .h-featured { max-width: 40rem; }
  .h-featured { margin-left: auto; }
}

/* Around the World gets its own ground so it reads as the third box */

.h-around .h-embed-grid { max-width: none; }

/* Featured artist — bone text, right-aligned, on the brick ground */

.h-band-brick { background: color-mix(in srgb, var(--h-scarlet) 70%, var(--h-bone)); }

.h-featured { text-align: right; color: var(--h-bone); }

.gh-content {
  .h-featured-label { 
    font-family: var(--h-display);
    font-size: var(--h-t-lead);
    color: var(--h-bone);
    margin: 0 0 0.25rem;
   }
  .h-featured-name { 
    font-family: var(--h-display);
    font-weight: 600;
    font-size: var(--h-t-h1);
    color: var(--h-bone);
    line-height: 1.05;
    margin: 0 0 1rem;
   }
  .h-featured-copy { 
    font-size: var(--h-t-base);
    line-height: 1.5;
    color: var(--h-bone);
    margin: 0 0 0 auto;
    max-width: 26ch;
   }
}
/* Hero play button — sits under the wordmark at every size. */

.h-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: fit-content;
  margin: clamp(1.5rem, 4vh, 2.75rem) auto 0;
  padding: 0.95rem 2rem;
  border: 0;
  border-radius: 2px;
  background: var(--h-oxblood);
  color: #FFFFFF;
  font-family: var(--h-util);
  font-size: var(--h-t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms var(--h-ease);
}

.h-hero-cta:hover,
.h-hero-cta:focus-visible { background: var(--h-scarlet); color: #FFFFFF; }
.h-hero-cta:focus-visible { outline: 2px solid #FFFFFF; outline-offset: 3px; }
.h-hero-cta svg { width: 1.15em; height: 1.15em; flex: none; }

/* Trailer dialog */

.h-trailer-dialog {
  width: min(92vw, 1100px);
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}
.h-trailer-dialog::backdrop { background: rgba(10, 10, 10, 0.9); }
.h-trailer-dialog .h-embed-frame { border-radius: 3px; }

.h-trailer-close {
  display: block;
  margin: 0 0 0.75rem auto;
  padding: 0.4rem 0.2rem;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--h-bone);
  font-family: var(--h-util);
  font-size: var(--h-t-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.h-trailer-close:hover { color: #FFFFFF; }
.h-trailer-close:focus-visible { outline: 2px solid var(--h-bone); outline-offset: 3px; }

/* Lede — single column now the trailer has moved to the hero. */

.h-film-lede {
  background: var(--h-ink);
  padding-block: clamp(1.5rem, 3vh, 2.5rem) clamp(3rem, 7vh, 5rem);
}

.h-film-lede .h-stat-head {
  text-align: center;
  max-width: none;
  padding-block: 0;
  margin-bottom: clamp(1.75rem, 4vh, 2.5rem);
}

.gh-content .h-film-lede .h-stat-figure {
  font-family: var(--h-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem) !important;
  line-height: 1.2;
  max-width: none;
  color: var(--h-bone);
  text-align: center;
  text-wrap: balance;
}

.h-film-lede .h-body-copy { max-width: 64rem; margin-inline: auto; text-align: center; }
.gh-content .h-film-lede .h-stat-source { text-align: center; }
.h-film-lede .h-film-cta { margin-top: clamp(2rem, 5vh, 3rem); text-align: center; }
/* Around the World — full-bleed, same ground as the footer, no seam between. */

.h-around-foot { 
  background: var(--h-ink);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: var(--h-gap-sec) 0 0;
   }

.gh-content {
  .h-around-foot .h-around-title { color: white !important; }
  .h-around-foot .h-around-sub { color: color-mix(in srgb, var(--h-bone) 70%, transparent); }
  .h-around-foot .h-around-sub { color: color-mix(in srgb, var(--h-bone) 75%, transparent); }
}

/* Ghost's page title is always supplied by the card, never the template. */

.page-template .post-content-header { display: none; }

.post-content-body,
.gh-content { padding-top: 0; margin-top: 0; }

.post-content { padding-top: 0; }

/* ---- Legal pages (privacy policy, user agreement) ---------------------- */

/* Reference material, not editorial: narrow measure, smaller type, clear
   section breaks. Any page using .h-legal gets the same treatment. */

.h-legal { padding-block: clamp(2rem, 5vh, 3.5rem) clamp(4rem, 10vh, 7rem); }

.h-legal-inner { 
  max-width: 100rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
   }

.gh-content {
  .h-legal h1 { font-size: var(--h-t-h2); color: var(--h-oxblood); margin: 0 0 0.4rem; }
  .h-legal .h-legal-date { 
    font-family: var(--h-util);
    font-size: var(--h-t-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--h-ink-soft);
    margin: 0 0 clamp(2rem, 5vh, 3rem);
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--h-bone-deep);
   }
  .h-legal h2 { 
    font-size: var(--h-t-h3);
    color: var(--h-oxblood);
    margin: 2.75rem 0 0.75rem;
   }
  .h-legal h3 { 
    font-family: var(--h-util);
    font-size: var(--h-t-sm);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--h-ink);
    margin: 1.5rem 0 0.35rem;
   }
  .h-legal p,
  .h-legal li { font-size: var(--h-t-sm); line-height: 1.75; margin: 0 0 1rem; }
  .h-legal .h-legal-foot { 
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--h-bone-deep);
    color: var(--h-ink-soft);
   }
}

/* ---- 19. Vimeo background hero ------------------------------------------ */

/* The compound selector out-specifies `.h-content > .h-full` in section 1b,
   which sets width: 100% and would otherwise stop the hero reaching the
   viewport edges.

   An iframe cannot object-fit, so it is oversized in both axes and centred:
   177.78vh is 16/9 of the height, 56.25vw is 9/16 of the width. max() picks
   whichever is larger, so the video always covers the container.

   Every layer inside the hero inherits the bottom radius. Anything at
   inset: 0 resolves against the square padding box, so without inherit it
   paints into the corners the curve removed. */

.h-content > .h-hero.h-full,
.h-hero { 
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 85dvh;
  border-bottom-left-radius: 50% 4vw;
  border-bottom-right-radius: 50% 4vw;
  overflow: hidden;
  color: var(--h-bone);
  padding: 0;
  }

.h-hero-video { 
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.h-hero-video .js-reframe,
.h-hero-video > div { 
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
   }

.h-hero-video iframe { 
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: max(102%, 177.78vh) !important;
  height: max(102%, 56.25vw) !important;
  border: 0;
  pointer-events: none;
   }

/* Pale Blue Dot logo, top-left. Positioning lives on the anchor, not the img,
   so the whole mark is the click target. */

.h-hero-logo-link { 
  position: absolute;
  z-index: 3;
  top: clamp(1rem, 3vw, 2rem);
  left: clamp(1rem, 3vw, 2rem);
  width: clamp(96px, 11vw, 150px);
  line-height: 0;
   }

.h-hero-logo { width: 100%; height: auto; display: block; }

/* Suppress the section-2 link treatment. The animated underline is a
   background gradient, and on a zero-height line box it paints above the
   image rather than below it. */

.h-hero-logo-link,
.h-hero-logo-link:hover,
.h-hero-logo-link:visited { 
  padding-bottom: 0 !important;
  background: none !important;
  background-image: none !important;
  text-decoration: none !important;
  transition: none !important;
   }

@media (prefers-reduced-motion: reduce) {
  .h-hero-video { display: none; }
  .h-hero {
    background-image: url("/content/images/2026/08/heathens_warm.jpeg");
    background-size: cover;
    background-position: center;
  }  
}

/* ---- 20. /blog — post listing ------------------------------------------- */
/* index.hbs renders .post-feed with one .post-card per post. Every third gets
   .post-card-large. London's own styles come first, so these override. */

.post-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--h-gap-cols);
  max-width: var(--h-container);
  margin: var(--h-gap-sec) auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.post-card-large { grid-column: 1 / -1; }

.post-card-link {
  display: block;
  text-decoration: none;
  background-image: none;
  color: var(--h-ink);
  transition: transform 200ms var(--h-ease);
}
.post-card-link:hover { transform: translateY(-2px); }

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  background: var(--h-bone-deep);
}
.post-card-large img { aspect-ratio: 21 / 9; }

.post-card-content { padding: 1rem 0 0; }
.post-card-title {
  font-family: var(--h-display);
  font-weight: 500;
  font-size: var(--h-t-h3);
  color: var(--h-oxblood);
  margin: 0;
  line-height: 1.2;
}
.post-card-link:hover .post-card-title { color: var(--h-scarlet); }

.h-member-initial { background: var(--h-oxblood); }

.post-card-title {
  font-family: var(--h-display);
  font-weight: 500;
  font-size: var(--h-t-h3);
  color: white;
  margin: 0;
  line-height: 1.2;
  transition: color 200ms var(--h-ease), font-size 200ms var(--h-ease), font-weight 200ms var(--h-ease);
}
.post-card-link:hover .post-card-title {
  color: #FFFFFF;
  font-size: var(--h-t-h1);
  font-weight: 700;
}


/* ---- 21. Blog posts ------------------------------------------------------ */
/* post.hbs renders through London's .gh-canvas grid, whose main column reads
   --content-width. Section 1 maps that to --h-measure (34rem) site-wide, which
   is too narrow for posts. */

.post-template .gh-canvas,
.post-template .post-content-header,
.post-template .post-content-body {
  --content-width: min(58rem, 92vw);
  --container-width: min(58rem, 92vw);
}

/* Header becomes a flex column so the title can sit under the image. */
.post-template .post-content-header {
  display: flex;
  flex-direction: column;
  max-width: min(58rem, 92vw);
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vh, 3rem);
}
.post-template .post-content-image { order: 1; margin: 0 0 1.5rem; }
.post-template .post-content-title  { order: 2; }
.post-template .post-content-excerpt { order: 3; }

/* Feature image matches the text width rather than breaking wide. */
.post-template .post-content-image.kg-width-wide {
  max-width: 100%;
  width: 100%;
  margin-inline: 0;
}
.post-template .post-content-image img {
  width: 100%; height: auto; display: block; border-radius: 2px;
}

.post-content-title {
  font-family: var(--h-display);
  font-weight: 600;
  font-size: var(--h-t-h2);
  color: var(--h-oxblood);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  text-align: left;
}
.post-content-excerpt {
  font-size: var(--h-t-lead);
  line-height: 1.5;
  color: var(--h-ink-soft);
  margin: 0;
}

.post-template .post-content-body { max-width: min(58rem, 92vw); margin-inline: auto; }
.gh-comments { margin-block: clamp(3rem, 8vh, 5rem); }



