/* "Our Story" — fixed in the lower-right (over the hero), no pill, doubled logo
   "I" caret in brand pink (#FF4E77), ~2x the old label. White over imagery.
   Placed on the About page only. */
.flm-storylink {
    position: fixed;
    right: clamp(1.25rem, 4vw, 3rem);
    bottom: clamp(1.25rem, 4vw, 3rem);
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    font-family: var(--wp--preset--font-family--plex);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.005em;
    line-height: 1;
    white-space: nowrap;
    color: #FFFFFF;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
    transition: opacity 0.15s ease;
}
.flm-storylink:hover { opacity: 0.85; }
.flm-storylink:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--wp--preset--color--focus, #FF4E77);
    border-radius: 3px;
}
.flm-storylink__carets { display: inline-flex; align-items: center; gap: 3px; }
.flm-storylink__carets svg { display: block; height: 0.92em; width: auto; }
@media (prefers-reduced-motion: no-preference) {
    .flm-storylink__carets { transition: transform 0.15s ease; }
    .flm-storylink:hover .flm-storylink__carets { transform: translateX(3px); }
}
@media (max-width: 640px) {
    .flm-storylink { font-size: 1.1rem; bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem); }
}
