  /* ── Crimson Pro (self-hosted Google font alternative) ── */
  @font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/crimson-pro/CrimsonPro-Light.ttf') format('truetype');
    font-weight: 300; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/crimson-pro/CrimsonPro-LightItalic.ttf') format('truetype');
    font-weight: 300; font-style: italic; font-display: swap;
  }
  @font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/crimson-pro/CrimsonPro-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/crimson-pro/CrimsonPro-Italic.ttf') format('truetype');
    font-weight: 400; font-style: italic; font-display: swap;
  }
  @font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/crimson-pro/CrimsonPro-Medium.ttf') format('truetype');
    font-weight: 500; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/crimson-pro/CrimsonPro-MediumItalic.ttf') format('truetype');
    font-weight: 500; font-style: italic; font-display: swap;
  }
  @font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/crimson-pro/CrimsonPro-SemiBold.ttf') format('truetype');
    font-weight: 600; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/crimson-pro/CrimsonPro-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600; font-style: italic; font-display: swap;
  }
  @font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/crimson-pro/CrimsonPro-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/crimson-pro/CrimsonPro-BoldItalic.ttf') format('truetype');
    font-weight: 700; font-style: italic; font-display: swap;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --strip-tween-duration: 0.9s;
    --site-serif: 'Crimson Pro', Georgia, serif;
    --pad: 60px;
    --header-h: 120px;
    --filter-h: 46px;
    --row-gap: 32px;
    --bg: #fff;
    --text: #1a1a1a;
    --nav-text: var(--text);
    --text-muted: #999;
    --text-faint: #d0ccc7;
    --accent: #8a7a60;
    --link-hover: var(--text);
    --contact-region: var(--text);
    --contact-company: var(--text);
    --contact-name: var(--text);
    --contact-role: var(--text-muted);
    --contact-phone: var(--text-muted);
    --contact-email: var(--text);
    --contact-clock: var(--text-muted);
    --contact-divider: var(--text);
    --contacts-intro: var(--text);
    --cols: 6;
  }
  @media (max-width: 1200px) { :root { --cols: 5; } }
  @media (max-width: 1200px) {
    .nav-slot--subtitle,
    .nav-main .nav-slot:nth-child(3) { display: none; }
  }
  @media (max-width: 1024px) { :root { --cols: 4; --pad: 60px; --header-h: 118px; } }
  @media (max-width: 768px)  { :root { --cols: 3; } }
  @media (max-width: 600px)  { :root { --pad: 16px; --row-gap: 8px; --cols: 2; --header-h: 120px; } }
  @media (hover: none), (max-width: 768px) { :root { --strip-tween-duration: 0.62s; } }
  /* ── Thumb layer ──
     Hidden thumbs stay full-size behind their nearest visible neighbour, then
     slide into place as the row expands. */
  .thumbs-layer {
    display: flex;
    flex: 0 0 auto;
    overflow: hidden;
    margin-left: -1px;
    width: calc(100% + 2px);
    transition: width var(--strip-tween-duration) cubic-bezier(0.45, 0, 0.55, 1);
  }
  .thumbs-layer .thumb,
  .thumbs-layer .film-thumb {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    overflow: hidden;
    margin-left: -0.5px;
    margin-right: -0.5px;
    transform: translateX(var(--stack-shift, 0));
    transition: transform var(--strip-tween-duration) cubic-bezier(0.45, 0, 0.55, 1);
    z-index: var(--thumb-z, 2);
  }
  .project-row__thumbs.is-expanded .thumbs-layer,
  .film-row__thumbs.is-expanded .thumbs-layer {
    width: 100% !important;
    margin-left: 0;
  }
  .project-row__thumbs.is-expanded .thumbs-layer .thumb,
  .film-row__thumbs.is-expanded .thumbs-layer .film-thumb {
    margin-left: 0;
    margin-right: 0;
    transform: translateX(0);
    z-index: 1;
  }
  @supports not (aspect-ratio: 1 / 1) {
    .thumb__panel,
    .film-thumb__panel {
      height: 0;
      padding-top: var(--panel-ratio-padding, 56.25%);
    }
    .project-row__thumbs.is-expanded .thumb__panel,
    .film-row__thumbs.is-expanded .film-thumb__panel,
    .project-row__thumbs.is-collapsing .thumb__panel,
    .film-row__thumbs.is-collapsing .film-thumb__panel {
      height: 100%;
      padding-top: 0;
    }
  }
  @media (hover: none), (max-width: 768px) {
    .project-row__thumbs.is-opening-fast .thumbs-layer,
    .film-row__thumbs.is-opening-fast .thumbs-layer,
    .project-row__thumbs.is-opening-fast .thumbs-layer .thumb,
    .film-row__thumbs.is-opening-fast .thumbs-layer .film-thumb {
      transition: none !important;
    }
  }

  html, body {
    background: var(--bg); color: var(--text);
    font-family: var(--site-serif);
    font-weight: 500;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
    transition: background 1.4s ease, color 1.4s ease;
  }
  ::selection {
    background: var(--text);
    color: var(--bg);
    -webkit-text-fill-color: var(--bg);
  }

  /* Mirror dark-mode CSS variables onto the <html> element too so the page
     background (visible during iOS scroll bounce / address-bar resize) matches
     the body. Without this, the white html shows through as a thin sliver. */
  body.is-dark {
    --bg: #111;
    --text: #f0f0f0;
    --nav-text: #e8e4df;
    --text-muted: #8a8580;
    --text-faint: #4a4540;
    --accent: #c8b8a0;
    --link-hover: #fff;
    --contact-region: var(--text);
    --contact-company: var(--text);
    --contact-name: var(--text);
    --contact-role: var(--text-muted);
    --contact-phone: var(--text-muted);
    --contact-email: var(--text);
    --contact-clock: var(--text-muted);
    --contact-divider: var(--text);
    --contacts-intro: var(--text);
  }
  html.is-dark {
    --bg: #111;
    background: #111;
  }

  .ls-version-badge {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 9999;
    color: #ff00a8;
    font-family: var(--site-serif);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
    pointer-events: none;
    user-select: none;
  }

  /* ====== LOGO LAYERS ====== */
  .logo-bar {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--header-h);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    padding: 0 var(--pad) 10px;
  }
  .logo-home {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
    flex-shrink: 0;
  }
  .logo-home svg { height: 48px; width: auto; display: block; }
  .logo-subtitle {
    font-family: var(--site-serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 0 2px;
    cursor: pointer;
    pointer-events: auto;
  }
  .logo-subtitle::after {
    content: '';
    position: absolute;
    bottom: 12px; left: 0; right: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: var(--ls-underline-origin, right);
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .logo-subtitle.is-active::after {
    transform: scaleX(1);
  }
  .logo-subtitle:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .site-header .logo-subtitle { color: var(--nav-text); transition: color 1.4s ease; }
  .logo-black .logo-subtitle { color: var(--nav-text); }
  .logo-white .logo-subtitle { color: #fff; }
  .logo-bar svg { height: 100%; width: auto; display: block; }
  .site-header { z-index: 10; background: var(--bg); pointer-events: auto; transition: background 1.4s ease; }
  /* Fade the header (logo + nav) in elegantly on page load */
  .site-header,
  .logo-bar {
    opacity: 0;
    transition: opacity 1.6s ease 0.2s, background 1.4s ease;
  }
  body.is-ready .site-header,
  body.is-ready .logo-bar {
    opacity: 1;
  }
  .site-header svg path { fill: var(--nav-text); transition: fill 1.4s ease; }
  .logo-black { z-index: 40; }
  .logo-black svg path { fill: var(--nav-text); }
  .logo-white { z-index: 41; }

  .nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
    width: 100%;
    height: 18px;
    position: relative;
  }
  .nav-slot { display: flex; align-items: center; }
  /* Pin the subtitle to true viewport center; keep the slot reserving its space in flex */
  .nav-slot--subtitle .logo-subtitle,
  .nav-main .nav-slot:nth-child(3) .logo-subtitle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav-link {
    font-family: var(--site-serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 0 2px;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    color: inherit;
    -webkit-appearance: none;
    appearance: none;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: var(--ls-underline-origin, right);
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: var(--ls-underline-hover-origin, left);
  }
  .nav-link.is-active::after {
    transform: scaleX(1);
  }
  .site-header .nav-link { color: var(--nav-text); transition: color 1.4s ease, opacity 0.3s ease; }
  .logo-black .nav-link { color: var(--nav-text); }
  .logo-white .nav-link { color: #fff; }

  @media (max-width: 1024px) and (min-width: 601px) {
    .logo-bar {
      padding-bottom: 16px;
    }
    .logo-home {
      margin-top: 12px;
      margin-bottom: 12px;
    }
  }

  /* ====== HERO — fixed, behind scrollable content ====== */
  .hero-frame {
    position: fixed; top: 0; left: 0; right: 0;
    height: 100vh;
    height: calc(var(--real-vh, 1vh) * 100);
    background: var(--bg);
    z-index: 20;
    transition: background 1.4s ease;
  }
  .hero {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    background: #111;
  }
  .hero__video {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .hero__video.is-ready { opacity: 1; }
  /* ====== SCROLLABLE CONTENT — above hero-frame ====== */
  .scroll-content {
    position: relative;
    z-index: 30;
    pointer-events: none;
  }
  /* Transparent spacer — hero shows through. Height set by JS to match hero's final extent. */
  .spacer {
    height: 100vh;
    height: calc(var(--real-vh, 1vh) * 100);
  }
  /* Projects — white bg, scrolls over hero-frame */
  .projects {
    background: var(--bg);
    padding: var(--filter-h) var(--pad) 0;
    transition: background 1.4s ease;
    pointer-events: auto;
  }

  /* ====== STRIP VIDEO PLAYER OVERLAY ====== */
  .strip-player {
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    z-index: 10;
    overflow: hidden;
    pointer-events: auto;
  }
  .strip-player__iframe-wrap {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
  }
  /* Our JW target div fills the wrap. JW injects its own DOM inside it. */
  .strip-player__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
  }
  /* JW renders a .jwplayer div inside our target. Force it to fill regardless
     of JW's internal aspect-ratio calculations. */
  .strip-player .jwplayer {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
  }
  .strip-player .jwplayer .jw-wrapper,
  .strip-player .jwplayer .jw-aspect {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
  }
  .strip-player .jwplayer .jw-media,
  .strip-player .jwplayer video {
    background: transparent !important;
    background-color: transparent !important;
    object-fit: cover;
  }
  .strip-player .jwplayer.jw-flag-fullscreen .jw-media,
  .strip-player .jwplayer.jw-flag-fullscreen video {
    object-fit: contain;
  }
  /* Hide JW\'s built-in loading/preview displays — we use our own spinner. */
  .strip-player .jwplayer .jw-display-icon-container,
  .strip-player .jwplayer .jw-state-buffering .jw-display-icon-container,
  .strip-player .jwplayer .jw-preview {
    display: none !important;
  }

  /* Touch: when a strip is expanded and waiting for the user to tap play,
     fade in the existing hover-arrow at its natural size in the center of
     the cinema area. Tapping the strip mounts JW Player.
     The !important ensures it beats both .is-expanded:hover::after (which
     hides the arrow normally when expanded) and the touch :hover suppression
     in the @media (hover: none) block below. */
  .project-row__thumbs.is-awaiting-play::after,
  .film-row__thumbs.is-awaiting-play::after,
  .project-row__thumbs.is-expanded.is-awaiting-play::after,
  .film-row__thumbs.is-expanded.is-awaiting-play::after,
  .project-row__thumbs.is-awaiting-play:hover::after,
  .film-row__thumbs.is-awaiting-play:hover::after {
    opacity: 0.9 !important;
  }
  /* Suppress the simulated-hover arrow on touch devices completely.
     Touch devices trigger :hover briefly when you tap, causing the desktop
     rollover arrow to flash. On touch we only want the awaiting-play arrow
     to appear (added by JS once the strip has expanded). */
  @media (hover: none) {
    .project-row__thumbs:hover::after,
    .film-row__thumbs:hover::after {
      opacity: 0 !important;
    }
  }
  /* Match JW Player control sizes to the share/close buttons.
     Share/close: 16px SVG inside a 32px hit area.
     Bumping JW slightly above so the controls feel substantial enough to use. */
  .strip-player .jwplayer .jw-svg-icon {
    width: 22px !important;
    height: 22px !important;
  }
  .strip-player .jwplayer .jw-icon,
  .strip-player .jwplayer .jw-icon-inline {
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    min-width: 40px !important;
  }
  .strip-player .jwplayer .jw-button-container {
    height: 48px !important;
  }
  .strip-player .jwplayer .jw-controlbar {
    min-height: 48px !important;
  }
  /* Apply our typeface to every text element JW renders */
  .strip-player .jwplayer,
  .strip-player .jwplayer .jw-text,
  .strip-player .jwplayer .jw-text-elapsed,
  .strip-player .jwplayer .jw-text-duration,
  .strip-player .jwplayer .jw-text-countdown,
  .strip-player .jwplayer .jw-text-live,
  .strip-player .jwplayer .jw-title,
  .strip-player .jwplayer .jw-title-primary,
  .strip-player .jwplayer .jw-title-secondary,
  .strip-player .jwplayer .jw-skip,
  .strip-player .jwplayer .jw-tooltip,
  .strip-player .jwplayer .jw-error-msg,
  .strip-player .jwplayer .jw-menu,
  .strip-player .jwplayer .jw-option {
    font-family: var(--site-serif) !important;
  }
  .strip-player .jwplayer .jw-text-elapsed,
  .strip-player .jwplayer .jw-text-duration,
  .strip-player .jwplayer .jw-text-countdown {
    font-size: 14px !important;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
    letter-spacing: 0.04em;
  }
  /* Re-center the time tooltip — JW\'s width measurement is slightly off with our font */
  .strip-player .jwplayer .jw-time-tip {
    transform: translate(calc(-50% + 3px), -12px) !important;
  }
  .strip-player .jwplayer .jw-time-tip .jw-text-tooltip,
  .strip-player .jwplayer .jw-time-tip .jw-text {
    text-align: center;
    letter-spacing: 0.04em;
  }
  /* Tighten the control bar — JW pads heavily by default. */
  .strip-player .jwplayer .jw-controls,
  .strip-player .jwplayer .jw-controls-backdrop {
    padding: 0 !important;
  }
  .strip-player .jwplayer .jw-controlbar {
    padding: 0 4px !important;
  }
  /* Button rows (left + right groups under the progress bar) */
  .strip-player .jwplayer .jw-button-container {
    padding: 0 !important;
    gap: 0;
  }
  /* JW Player hides the playback (play/pause) button on touch devices via
     .jw-flag-touch — it expects you to tap the video itself. We want it back
     so the user has an obvious control in the bottom-left. */
  .strip-player .jwplayer .jw-controlbar .jw-icon-playback,
  .strip-player .jwplayer.jw-flag-touch .jw-controlbar .jw-icon-playback {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .strip-player .jwplayer .jw-button-container > .jw-icon:first-child,
  .strip-player .jwplayer .jw-button-container > .jw-reset:first-child {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .strip-player .jwplayer .jw-button-container > .jw-icon:last-child,
  .strip-player .jwplayer .jw-button-container > .jw-reset:last-child {
    margin-right: 0 !important;
    padding-right: 0 !important;
  }
  /* Slim progress + volume rails to 1px while keeping the original hit area. */
  .strip-player .jwplayer .jw-slider-time {
    margin-top: 5px !important;
  }
  .strip-player .jwplayer .jw-slider-time,
  .strip-player .jwplayer .jw-slider-time .jw-slider-container,
  .strip-player .jwplayer .jw-slider-time .jw-rail,
  .strip-player .jwplayer .jw-slider-time .jw-buffer,
  .strip-player .jwplayer .jw-slider-time .jw-progress {
    display: block !important;
    visibility: visible !important;
  }
  .strip-player .jwplayer .jw-slider-horizontal .jw-rail,
  .strip-player .jwplayer .jw-slider-horizontal .jw-buffer,
  .strip-player .jwplayer .jw-slider-horizontal .jw-progress {
    height: 1px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  .strip-player .jwplayer .jw-slider-horizontal .jw-progress {
    background: #fff !important;
    background-color: #fff !important;
    opacity: 1 !important;
  }
  .strip-player .jwplayer .jw-slider-horizontal .jw-buffer {
    background: rgba(255,255,255,0.35) !important;
    background-color: rgba(255,255,255,0.35) !important;
  }
  .strip-player .jwplayer .jw-slider-horizontal .jw-rail {
    background: rgba(255,255,255,0.35) !important;
    background-color: rgba(255,255,255,0.35) !important;
  }
  .strip-player .jwplayer .jw-slider-horizontal .jw-buffer,
  .strip-player .jwplayer .jw-slider-horizontal .jw-rail {
    opacity: 0.35 !important;
  }
  /* Center the drag knob vertically on the 1px rail */
  .strip-player .jwplayer .jw-slider-horizontal .jw-knob {
    width: 8px !important;
    height: 8px !important;
    top: 50% !important;
    margin-top: 0 !important;
    transform: translateY(-50%) !important;
  }
  /* On hover, thicken slightly for affordance */
  .strip-player .jwplayer .jw-slider-horizontal:hover .jw-rail,
  .strip-player .jwplayer .jw-slider-horizontal:hover .jw-buffer,
  .strip-player .jwplayer .jw-slider-horizontal:hover .jw-progress {
    height: 2px !important;
  }
  .strip-player__spinner {
    position: absolute;
    top: 50%; left: 50%;
    width: 48px; height: 48px;
    margin: -24px 0 0 -24px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ls-spin 0.9s linear infinite;
  }
  @keyframes ls-spin {
    to { transform: rotate(360deg); }
  }
  .strip-player__error {
    display: none;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.8);
    font-family: var(--site-serif);
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0 32px;
    align-items: center;
    justify-content: center;
  }
  /* Make sure the strip can host an absolutely-positioned overlay */
  .project-row__thumbs.is-expanded,
  .film-row__thumbs.is-expanded { position: relative; }

  .project-row { padding: var(--row-gap) 0; }
  .project-row__info {
    font-size: 15px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase;
    min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    color: var(--text);
    transition: color 1.4s ease;
  }
  .project-row__client {
    font-weight: 600;
    font-style: italic;
    color: var(--text);
    transition: color 1.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .project-row__footer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    margin-top: 4px;
  }
  /* Action buttons (share + close) sitting on the right of the project row header */
  .project-row__header,
  .film-row__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0;
    position: relative;
    z-index: 30;
    pointer-events: auto;
  }
  .project-row__actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    opacity: 0;
    pointer-events: none;
    position: relative;
    z-index: 40;
    transition: opacity 0.3s ease;
  }
  .project-row.is-open-row .project-row__actions,
  .film-row.is-open-row .project-row__actions {
    opacity: 1;
    pointer-events: auto;
  }
  .row-action {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    border: none;
    background: transparent;
    position: relative;
    z-index: 41;
    pointer-events: auto;
    /* In dark mode (when a strip is expanded) match JW\'s control icon color
       — same off-white at rest, full white on hover. */
    color: rgba(255,255,255,0.85);
    padding: 0;
    border-radius: 0;
    opacity: 1;
    transition: color 0.25s ease;
  }
  .row-action:hover { color: #fff; opacity: 1; }
  .row-action svg {
    width: 16px; height: 16px;
    fill: none;
    stroke: currentColor; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
    pointer-events: none;
  }
  .row-action--close svg { width: 14px; height: 14px; }
  /* Nudge the close button slightly right so the X sits over the strip\'s right edge */
  .row-action--close { margin-right: -5px; }
  .project-row__thumbs,
  .film-row__thumbs {
    display: flex;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: transparent;
  }
  .thumb {
    flex: 1 1 0;
    min-width: 0; position: relative; overflow: hidden; cursor: pointer;
    background: #111;
  }
  .thumb__panel {
    width: 100%; position: relative;
    margin: -1px;
    width: calc(100% + 2px);
    transition:
      transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.6s ease,
      aspect-ratio 0s;
    will-change: transform;
    backface-visibility: hidden;
    /* Fade in once the background image has finished loading */
    opacity: 0;
  }
  .thumb.is-loaded .thumb__panel { opacity: 1; }
  .project-row__thumbs::after,
  .film-row__thumbs::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-40%, -50%);
    width: 0; height: 0;
    border-style: solid;
    border-width: 18px 0 18px 28px;
    border-color: transparent transparent transparent #fff;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
  }
  .project-row__thumbs:hover::after,
  .film-row__thumbs:hover::after {
    opacity: 0.85;
  }
  .project-row__thumbs:hover .thumb__panel,
  .film-row__thumbs:hover .film-thumb__panel {
    transform: scale(1.03);
  }

  /* Expanded strip — cinema mode */
  .project-row__thumbs.is-expanded,
  .film-row__thumbs.is-expanded {
    cursor: default;
    background: #000;
  }

  /* Desaturate non-expanded strips */
  body.has-expanded .project-row__thumbs:not(.is-expanded),
  body.has-expanded .film-row__thumbs:not(.is-expanded) {
    filter: grayscale(1) brightness(0.4);
    transition: filter 0.6s ease, background 0.5s ease;
  }
  body.has-expanded .project-row:not(.is-open-row) .project-row__header,
  body.has-expanded .project-row:not(.is-open-row) .project-row__footer,
  body.has-expanded .film-row:not(.is-open-row) .film-row__header,
  body.has-expanded .film-row:not(.is-open-row) .film-row__caption {
    opacity: 0.2;
    transition: opacity 1.4s ease;
  }
  .project-row__thumbs,
  .film-row__thumbs {
    transition: filter 1.4s ease, background 1.4s ease;
  }
  @media (hover: none), (max-width: 768px) {
    .project-row__thumbs,
    .film-row__thumbs {
      transition: opacity 0.35s ease, background 0.35s ease;
    }
    body.has-expanded .project-row__thumbs:not(.is-expanded),
    body.has-expanded .film-row__thumbs:not(.is-expanded) {
      filter: grayscale(1) brightness(0.4);
      opacity: 1;
      transition: filter 0.35s ease, background 0.35s ease;
    }
    body.has-expanded .project-row:not(.is-open-row) .project-row__header,
    body.has-expanded .project-row:not(.is-open-row) .project-row__footer,
    body.has-expanded .film-row:not(.is-open-row) .film-row__header,
    body.has-expanded .film-row:not(.is-open-row) .film-row__caption {
      transition: opacity 0.45s ease;
    }
    .project-row__thumbs:hover .thumb__panel,
    .film-row__thumbs:hover .film-thumb__panel {
      transform: none;
    }
  }
  .project-row__thumbs.is-expanded::after,
  .film-row__thumbs.is-expanded::after {
    display: none;
  }
  /* But re-show when we\'re explicitly awaiting a play tap on touch */
  .project-row__thumbs.is-expanded.is-awaiting-play::after,
  .film-row__thumbs.is-expanded.is-awaiting-play::after {
    display: block !important;
  }
  .project-row__thumbs.is-expanded:hover::after,
  .film-row__thumbs.is-expanded:hover::after {
    opacity: 0;
  }
  .project-row__thumbs.is-expanded .thumb__panel,
  .film-row__thumbs.is-expanded .film-thumb__panel,
  .project-row__thumbs.is-collapsing .thumb__panel,
  .film-row__thumbs.is-collapsing .film-thumb__panel {
    aspect-ratio: auto;
    height: 100%;
    /* Reset the hover-state overscan since transform is disabled in expanded mode */
    margin: 0;
    width: 100%;
    transform: none !important;
  }

  /* Layer-based strip rendering supersedes the per-breakpoint basis system. */
  .project-row__thumbs.is-expanded .thumb,
  .film-row__thumbs.is-expanded .film-thumb {
    cursor: default;
  }

  .project-row__caption {
    font-family: var(--site-serif);
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    text-align: center;
    max-width: 300px;
    width: 50%;
    transition: color 1.4s ease;
  }
  ::-webkit-scrollbar { display: none; }
  html { scrollbar-width: none; }

  /* ====== FOOTER SECTIONS (about / awards / contacts) ====== */
  .footer-sections {
    background: var(--bg);
    color: var(--text);
    font-family: var(--site-serif);
    padding: 80px var(--pad) 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background 1.4s ease, color 1.4s ease;
    pointer-events: auto;
  }

  /* ── About ── */
  .about {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    column-gap: 32px;
    padding: 80px 0 0;
    margin-bottom: 0;
  }
  .about-col {
    padding-right: 0;
  }
  .about-col--lead { grid-column: span 2; }
  .about-col p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    text-align: left;
    hyphens: none;
    transition: color 1.4s ease;
  }
  .about-col p + p {
    margin-top: 1em;
    text-indent: 1.5em;
  }

  /* Lead column: large paragraph — small caps treatment is opt-in via toolbar */
  .about-col--lead p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--text);
    text-align: left;
    transition: color 1.4s ease;
    hyphens: none;
  }
  /* In supporting columns, italicize specific accents via .em or <em> */
  .about-col em {
    font-style: italic;
    font-weight: 500;
  }
  /* Inline utility classes the user can apply via the bio Wysiwyg toolbar */
  .about-col .smallcaps {
    font-variant-caps: small-caps;
    letter-spacing: 0.06em;
  }
  .about-col .lead {
    font-size: 1.15em;
    font-weight: 500;
    line-height: 1.5;
  }
  .about-col .muted {
    opacity: 0.55;
  }
  .about-col a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: color 0.25s ease, border-color 0.25s ease;
  }
  .about-col a:hover {
    opacity: 1;
  }
  body.is-dark .about-col a:hover {
    color: var(--link-hover);
  }
  /* Drop cap on a specific paragraph (added via the toolbar button) */
  .about-col p.has-dropcap::first-letter {
    font-size: 4em;
    line-height: 0.85;
    font-weight: 700;
    font-style: italic;
    font-variant-caps: normal;
    float: left;
    margin: 0.05em 0.12em -0.05em 0;
    color: var(--contacts-intro);
  }

  /* ── Awards strip ── */
  .awards {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 0;
    margin-bottom: 80px;
  }
  .awards img {
    flex: 1 1 0;
    min-width: 0;
    max-height: 100px;
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    /* Render logo glyphs in the current text color */
    filter: brightness(0) saturate(100%);
    transition: filter 1.4s ease;
  }
  body.is-dark .awards img {
    /* Dark mode: invert so logos render in light text color */
    filter: brightness(0) saturate(100%) invert(1);
  }

  /* ── Contacts intro (general enquiry direction) ── */
  .contacts-intro {
    width: 100%;
    padding: 0;
    text-align: center;
    font-family: var(--site-serif);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    transition: color 1.4s ease;
    max-width: 720px;
    margin: 0 auto;
  }
  .contacts-intro p { margin: 0 0 0.6em; }
  .contacts-intro p:last-child { margin-bottom: 0; }
  .contacts-intro a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: color 0.25s ease, border-color 0.25s ease;
  }
  .contacts-intro a:hover { opacity: 1; }
  body.is-dark .contacts-intro a:hover { color: var(--link-hover); }
  .contacts-intro em { font-style: italic; text-transform: none; letter-spacing: 0.04em; }
  .contacts-intro strong { font-weight: 700; }

  /* ── Contacts grid ── */
  .contacts {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(9, auto);
    width: 100%;
    padding: 0 0 48px;
  }
  .contact {
    display: grid;
    grid-row: span 9;
    grid-template-rows: subgrid;
    justify-items: center;
    align-content: start;
    text-align: center;
    padding: 0 16px;
    position: relative;
    row-gap: 0;
  }
  .contact + .contact::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 1px;
    background: var(--text-faint);
    opacity: 0.4;
  }
  /* On desktop the .contact-clock and .contact-text wrappers are layout
     no-ops — children fall back into the subgrid rows. Mobile re-enables
     them as flex containers (see media query below). */
  .contact-clock,
  .contact-text { display: contents; }

  /* ── Clock ── */
  .clock {
    --clock-size: 140px;
    width: var(--clock-size);
    height: var(--clock-size);
    position: relative;
    z-index: 0;
    margin-bottom: 28px;
    align-self: end;
  }
  .clock svg { width: 100%; height: 100%; overflow: visible; }
  .clock-face-ring { fill: none; stroke: var(--text-faint); stroke-width: 0.8; opacity: 0.5; transition: stroke 1.4s ease; }
  .clock-tick { stroke: var(--text-muted); stroke-linecap: round; transition: stroke 1.4s ease; }
  .clock-tick--major { stroke: var(--text); stroke-width: 1.2; opacity: 0.7; }
  .clock-tick--minor { stroke-width: 0.5; opacity: 0.35; }
  .clock-numeral {
    fill: var(--text-muted);
    font-family: var(--site-serif);
    font-size: 7px; font-weight: 300;
    text-anchor: middle; dominant-baseline: central;
    letter-spacing: 0.02em;
    transition: fill 1.4s ease;
  }
  .clock-hand { stroke-linecap: round; }
  .clock-hand--hour { stroke: var(--text); stroke-width: 2; opacity: 0.9; transition: stroke 1.4s ease; }
  .clock-hand--minute { stroke: var(--text); stroke-width: 1.2; opacity: 0.75; transition: stroke 1.4s ease; }
  .clock-hand--second { stroke: var(--accent); stroke-width: 0.6; opacity: 0.6; transition: stroke 1.4s ease; }
  .clock-center { fill: var(--accent); opacity: 0.8; transition: fill 1.4s ease; }
  .clock-center-inner { fill: var(--bg); transition: fill 1.4s ease; }

  /* Day clock */
  .clock--day .clock-face-ring    { stroke: #b0a89e; }
  .clock--day .clock-tick--major  { stroke: #1a1816; }
  .clock--day .clock-tick--minor  { stroke: #6b6560; }
  .clock--day .clock-numeral      { fill: #6b6560; }
  .clock--day .clock-hand--hour   { stroke: #1a1816; }
  .clock--day .clock-hand--minute { stroke: #1a1816; }
  .clock--day .clock-hand--second { stroke: #8a7a60; }
  .clock--day .clock-center       { fill: #8a7a60; }
  .clock--day .clock-center-inner { fill: #e8e4df; }
  .clock--day::before {
    content: '';
    position: absolute;
    inset: 6%;
    background: #e8e4df;
    border-radius: 50%;
    z-index: -1;
  }

  /* ── Contact text ── */
  .digital-time {
    font-family: var(--site-serif);
    font-size: 13px; font-weight: 300;
    color: var(--contact-clock);
    padding-bottom: 24px;
    font-variant-numeric: tabular-nums;
    align-self: end;
    transition: color 1.4s ease;
  }
  .contact-region {
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--contact-region);
    padding-bottom: 6px;
    align-self: end;
    transition: color 1.4s ease;
  }
  .contact-divider {
    font-size: 14px; font-weight: 300;
    color: var(--contact-divider);
    padding-bottom: 6px;
    align-self: end;
    line-height: 1;
    transition: color 1.4s ease;
  }
  .contact-company {
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--contact-company);
    padding-bottom: 12px;
    align-self: start;
    transition: color 1.4s ease;
  }
  .contact-name {
    font-size: 15px; font-weight: 300;
    font-style: italic;
    color: var(--contact-name);
    padding-bottom: 0px;
    align-self: end;
    transition: color 1.4s ease;
  }
  .contact-role {
    font-size: 12px; font-weight: 300;
    color: var(--contact-role);
    padding-bottom: 14px;
    align-self: end;
    transition: color 1.4s ease;
  }
  .contact-phone {
    font-size: 12px; font-weight: 300;
    color: var(--contact-phone);
    line-height: 1.6;
    padding-bottom: 10px;
    align-self: end;
    transition: color 1.4s ease;
  }
  .contact-phone a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    color: inherit;
    text-decoration: none;
    font: inherit;
    letter-spacing: inherit;
    transition: none;
  }
  .contact-phone a:hover {
    color: inherit;
  }
  .contact-email a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    font-size: 12px; font-weight: 400;
    color: var(--contact-email);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
  }
  body.is-dark .contact-email a:hover { color: var(--link-hover); }
  .contact-email { align-self: end; }

  /* ── Site footer ── */
  .site-footer {
    width: 100%;
    border-top: 1px solid var(--text);
    padding: 12px 0 0;
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px 32px;
    color: var(--text);
    font-family: var(--site-serif);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.03em;
    transition: border-color 1.4s ease, color 1.4s ease;
  }
  .site-footer__left,
  .site-footer__right {
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
  }
  .site-footer__right {
    margin-left: auto;
    text-align: right;
  }
  .site-footer p {
    margin: 0;
  }
  .site-footer p + p {
    margin-top: 0.45em;
  }
  .site-footer a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    color: inherit;
    text-decoration: none;
    border-bottom: none;
    transition: color 0.25s ease;
  }
  .site-footer i[class*="fa-"] {
    display: inline-block;
    margin-left: 0.25em;
    font-size: 1.05em;
    line-height: 1;
    vertical-align: -0.08em;
  }
  body.is-dark .site-footer a:hover {
    color: var(--link-hover);
  }

  /* ── Films section ── */
  .films {
    width: 100%;
    margin-bottom: 80px;
  }
  .film-row {
    padding: 24px 0;
  }
  .film-row__info {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    transition: color 1.4s ease;
  }
  .film-thumb {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #111;
  }
  .film-thumb__panel {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    transition:
      transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.6s ease;
    opacity: 0;
  }
  .film-thumb.is-loaded .film-thumb__panel { opacity: 1; }
  .film-row__caption {
    font-family: var(--site-serif);
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    text-align: center;
    max-width: 300px;
    width: 50%;
    margin: 12px auto 0;
    transition: color 1.4s ease;
  }

  /* ── Footer responsive ── */
  @media (max-width: 1200px) and (min-width: 601px) {
    .about {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px 32px;
    }
    .about-col { padding-right: 0; }
    .about-col--lead { grid-column: 1; grid-row: 1; }
    .about-col:nth-child(2) { grid-column: 1; grid-row: 2; }
    .about-col:nth-child(3) { grid-column: 2; grid-row: 1; }
    .about-col:nth-child(4) { grid-column: 2; grid-row: 2; }
  }
  @media (max-width: 1024px) and (min-width: 601px) {
    .clock {
      --clock-size: 110px;
      margin-left: auto;
      margin-right: auto;
    }
    .awards { gap: 24px; flex-wrap: wrap; }
    .awards img { max-height: 60px; }
    .contacts {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      grid-template-rows: auto;
      gap: 56px 0;
    }
    .contact {
      grid-column: span 2;
      grid-row: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      padding: 0 18px;
    }
    .contact:nth-child(4) { grid-column: 2 / span 2; }
    .contact:nth-child(5) { grid-column: 4 / span 2; }
    .contact-clock,
    .contact-text {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
    }
    .contact-clock {
      align-self: stretch;
    }
    .digital-time,
    .contact-region,
    .contact-divider,
    .contact-company,
    .contact-name,
    .contact-role,
    .contact-phone,
    .contact-email {
      align-self: center;
      text-align: center;
    }
    .contact + .contact::before { display: none; }
  }
  @media (max-width: 600px) {
    .footer-sections { padding: 60px var(--pad) 40px; }
    .about {
      grid-template-columns: 1fr;
      gap: 24px 0;
    }
    .about-col,
    .about-col--lead,
    .about-col:nth-child(2),
    .about-col:nth-child(3),
    .about-col:nth-child(4) {
      grid-column: 1;
      grid-row: auto;
    }
    .about-col p,
    .about-col--lead p {
      text-align: justify;
      text-align-last: left;
    }
    .awards { gap: 20px; padding: 36px 0; }
    .awards img { max-height: 40px; }
    /* Mobile: bring nav + matching nav-sized text down to ~80% */
    .nav-link,
    .logo-subtitle,
    .project-row__info,
    .project-row__client,
    .film-row__info,
    .contacts-intro,
    #brand-line,
    #title-line {
      font-size: 12px;
    }

    /* On mobile, allow the project row info to wrap to two lines when long.
       Brand and title are each unbreakable units (via white-space: nowrap),
       so the title drops to the next line in one piece if it doesn\'t fit
       — never breaking mid-phrase. The em-dash separator is where the
       wrap happens. */
    .project-row__info {
      white-space: normal;
      overflow: visible;
      text-overflow: clip;
      line-height: 1.4;
    }
    .project-row__brand,
    .project-row__client {
      white-space: nowrap;
    }
    /* Reserve enough header height for two lines of title text so the strip
       below sits at a consistent distance regardless of whether the title
       wraps. The text bottom-aligns within the header, so single-line titles
       still hug the strip rather than floating in mid-air. */
    .project-row__header,
    .film-row__header {
      align-items: flex-end;
      min-height: calc(12px * 1.4 * 2);
      margin-bottom: 8px;
    }
    .project-row.is-open-row .project-row__header,
    .film-row.is-open-row .film-row__header {
      min-height: 24px;
      margin-bottom: 2px;
    }
    .project-row.is-open-row .row-action,
    .film-row.is-open-row .row-action {
      width: 32px;
      height: 32px;
    }
    .project-row.is-open-row .project-row__actions,
    .film-row.is-open-row .project-row__actions {
      gap: 0;
    }

    /* ── Contact cards on mobile ──
       Each contact becomes a single horizontal block: text left, clock right.
       The subgrid layout (designed for 5 even columns) is overridden so each
       contact is its own row with text floated left and clock right-aligned. */
    .contacts {
      display: block;
      padding: 0 0 18px;
    }
    .site-footer {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: 24px;
      padding-top: 10px;
      text-align: left;
      font-size: 10px;
    }
    .site-footer__left,
    .site-footer__right {
      display: block;
      text-align: left;
      white-space: nowrap;
    }
    .site-footer__left { min-width: 0; }
    .site-footer__right {
      flex-shrink: 0;
      margin-left: 0;
      margin-top: 0;
      text-align: right;
    }
    /* Smaller clock on mobile so the clock+digital-time block isn\'t taller
       than the contact text it sits next to. */
    .clock { --clock-size: 128px; margin-bottom: 4px; }
    .contact {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 16px;
      text-align: left;
      padding: 32px 0;
      position: relative;
      min-height: calc(var(--clock-size, 128px) + 40px);
    }
    .contact + .contact::before {
      left: 0; right: 0; top: 0; bottom: auto;
      width: auto; height: 1px;
    }
    /* Text on the left, clock + digital time on the right */
    .contact-text {
      order: 1;
      flex: 1 1 auto;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
    .contact-clock {
      order: 2;
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    /* Force every text field to the left, overriding any inherited centring
       and the desktop align-self: end/start which is for the subgrid layout
       but pushes items to the right of the flex column on mobile. */
    .contact-region,
    .contact-company,
    .contact-name,
    .contact-role,
    .contact-phone,
    .contact-email,
    .contact-email a {
      text-align: left !important;
      align-self: flex-start !important;
      width: auto;
    }
    .contact-clock .clock { margin: 0; }
    .contact-clock .digital-time {
      font-size: 11px;
      letter-spacing: 0.06em;
      line-height: 1.2;
      margin-top: 6px;
      padding-bottom: 0;
      text-align: center;
      align-self: center !important;
    }
    /* Hide the centre dash divider on mobile since each card is left-aligned */
    .contact-divider { display: none; }
  }
  /* ====== SHOWREEL CAPTIONS ====== */
  .caption-stage {
    position: absolute;
    bottom: 72px;
    bottom: max(60px, env(safe-area-inset-bottom)); left: 0;
    width: 100%;
    text-align: center;
    padding: 0 var(--pad);
    user-select: none;
    z-index: 2;
    cursor: pointer;
    pointer-events: auto;
  }
  @media (max-width: 600px) {
    .caption-stage {
      bottom: 128px;
      bottom: max(96px, calc(env(safe-area-inset-bottom) + 72px));
    }
  }
  @supports (-webkit-touch-callout: none) {
    @media (max-width: 600px) {
      .caption-stage {
        bottom: 142px;
        bottom: calc(env(safe-area-inset-bottom) + 112px);
      }
    }
  }
  .caption-line {
    position: relative;
    overflow: visible;
  }
  .caption-line::before {
    content: 'M';
    visibility: hidden;
    display: inline-block;
    width: 0;
    overflow: hidden;
  }
  .caption-line .char {
    position: absolute;
    top: 0; left: 50%;
    will-change: transform, opacity, filter;
    white-space: pre;
    color: #f0ece4;
  }
  .caption-line .ghost {
    position: absolute;
    top: 0; left: 50%;
    will-change: opacity, filter;
    white-space: pre;
    pointer-events: none;
    color: #f0ece4;
  }
  #brand-line {
    font-family: var(--site-serif);
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.15;
    margin-bottom: 0.4em;
  }
  #caption-divider {
    height: 1px;
    background: #fff;
    margin: calc(0em) auto 0.6em;
    width: 0;
  }
  #title-line {
    font-family: var(--site-serif);
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.3;
  }
