/* ════════════════════════════════════════════════════════════════
   LIM EDITORIAL — atlantiser.com inspired shared stylesheet
   Reusable across home and other frontend pages
   · Cream palette, ink invert hover, bracket-mono CTAs
═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
    --ink:        #0a0a0a;
    --ink-soft:   #1a1a1a;
    --muted:      #6b6b6b;
    --muted-2:    #9a9a9a;
    --line:       #ececec;
    --line-soft:  #f3f3f3;
    --bg:         #fbfbf9;
    --bg-alt:     #f4f3ee;
    --accent:     #ff5b2e;
    --radius:     6px;
    --ease:       cubic-bezier(.2,.7,.2,1);

    /* Font stacks — single source of truth */
    --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    /* Fluid type scale — use these everywhere for consistency */
    --fs-xs:   clamp(.72rem, .68rem + .15vw, .8rem);   /* tiny / mono labels (~11–13px) */
    --fs-sm:   clamp(.82rem, .78rem + .2vw,  .92rem);  /* small / captions */
    --fs-base: clamp(.95rem, .9rem  + .25vw, 1.05rem); /* body */
    --fs-md:   clamp(1.05rem, .95rem + .4vw, 1.2rem);  /* lede */
    --fs-lg:   clamp(1.25rem, 1.1rem + .8vw, 1.6rem);  /* sub-heads */
    --fs-xl:   clamp(1.6rem, 1.3rem + 1.6vw, 2.4rem);  /* h3 */
    --fs-2xl:  clamp(2rem, 1.5rem + 2.8vw, 3.8rem);    /* h2 / section title */
    --fs-3xl:  clamp(2.6rem, 1.8rem + 5vw, 6rem);      /* sub-page hero */
    --fs-4xl:  clamp(2.8rem, 1.6rem + 9vw, 11rem);     /* home hero */
}

/* ════════════════════════════════════════════════════════════════
   GLOBAL TYPOGRAPHY RESET — locks editorial pages to the same base.
   Intentionally narrow: only body/p/headings/lists so that component-
   level font overrides (JetBrains Mono on .mono, .lim-eyebrow,
   .lim-btn, etc.) are never clobbered.
═══════════════════════════════════════════════════════════════ */
html, body {
    background: var(--bg);
    color: var(--ink);
}
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Base body — Inter via inheritance; spans/anchors/buttons inherit naturally */
body {
    font-family: var(--font-sans);
    font-feature-settings: "ss01","cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: var(--fs-base);
    line-height: 1.6;
    font-weight: 400;
}

/* Paragraph text */
body p {
    font-size: var(--fs-base);
    line-height: 1.65;
    margin: 0 0 1rem;
}

/* List items */
body li, body dd, body dt {
    font-size: var(--fs-base);
    line-height: 1.65;
}

/* Headings — override legacy theme h1–h6 */
body h1, body h2, body h3, body h4, body h5, body h6 {
    font-family: var(--font-sans);
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1.1;
    margin: 0 0 .75rem;
}
body h1 { font-size: var(--fs-3xl); line-height: .98; letter-spacing: -.035em; }
body h2 { font-size: var(--fs-2xl); line-height: 1.02; letter-spacing: -.03em; }
body h3 { font-size: var(--fs-xl);  line-height: 1.1;  letter-spacing: -.02em; }
body h4 { font-size: var(--fs-lg);  font-weight: 500; }
body h5 { font-size: var(--fs-md);  font-weight: 500; }
body h6 { font-size: var(--fs-base); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }

body small { font-size: var(--fs-sm); }

/* Code inline — mono; does NOT affect .lim-btn or .mono spans */
body code, body kbd, body samp, body pre {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: .92em;
}

/* ════════════════════════════════════════════════════════════════
   LAYOUT PRIMITIVES
═══════════════════════════════════════════════════════════════ */
.lim-container {
    max-width: 1680px;
    margin-inline: auto;
    padding-inline: clamp(1.5rem, 4vw, 4rem);
    width: 100%;
}
.lim-container-narrow {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1.5rem, 4vw, 4rem);
}
.lim-section {
    padding: clamp(5rem, 10vw, 9rem) 0;
    position: relative;
}

/* ════════════════════════════════════════════════════════════════
   TYPE HELPERS
═══════════════════════════════════════════════════════════════ */
.mono {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase;
}
.serif {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic; font-weight: 400;
}

.lim-eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: var(--fs-xs); letter-spacing: .24em; text-transform: uppercase;
    color: var(--muted);
}
.lim-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
}
.lim-eyebrow .arrow { color: var(--accent); }

.lim-display {
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .96;
    color: var(--ink);
    text-transform: uppercase;
}
.lim-h2 {
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: 1.04;
    color: var(--ink);
}
.lim-h2.is-upper { text-transform: uppercase; font-weight: 600; letter-spacing: -.025em; }

/* Split-text setup */
.split { overflow: hidden; }
.split.split-done { overflow: visible; }  /* released after animation to prevent resize clipping */
.split-word {
    display: inline-block; will-change: transform;
    padding-bottom: 0.08em;
}

/* ════════════════════════════════════════════════════════════════
   BUTTONS — bracket mono CTAs (atlantiser style)
═══════════════════════════════════════════════════════════════ */
.lim-btn {
    display: inline-flex; align-items: center; gap: .65rem;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: .22em; font-weight: 500;
    text-transform: uppercase; text-decoration: none;
    border: 1px solid var(--ink);
    position: relative; overflow: hidden;
    transition: color .35s ease, border-color .35s ease;
    cursor: pointer;
}
.lim-btn::before {
    content: ''; position: absolute; inset: 0;
    background: var(--accent);
    transform: translateY(101%);
    transition: transform .5s var(--ease);
    z-index: 0;
}
.lim-btn:hover::before { transform: translateY(0); }
.lim-btn > * { position: relative; z-index: 1; }
.lim-btn .arrow { transition: transform .35s ease; }
.lim-btn:hover .arrow { transform: translateX(4px); }

.lim-btn-primary { background: var(--ink); color: #fff; }
.lim-btn-primary:hover { color: #fff; border-color: var(--accent); }

.lim-btn-ghost { background: transparent; color: var(--ink); }
.lim-btn-ghost:hover { color: #fff; border-color: var(--accent); }

.lim-btn-on-dark {
    border-color: rgba(255,255,255,.4);
    color: #fff;
}

/* ════════════════════════════════════════════════════════════════
   REVEAL UTILITIES
═══════════════════════════════════════════════════════════════ */
.lim-fade { opacity: 0; transform: translateY(28px); }

/* ════════════════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════════════ */
#limLoader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 4vw, 4rem);
    transition: opacity .65s cubic-bezier(.76,0,.24,1), transform .65s cubic-bezier(.76,0,.24,1);
    will-change: opacity, transform;
}
#limLoader.is-loaded {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}
.lim-loader-brand {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.lim-loader-num {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: clamp(4.5rem, 14vw, 13rem);
    font-weight: 400;
    letter-spacing: -.04em;
    color: #fff;
    line-height: 1;
    user-select: none;
    min-width: 3ch;
    text-align: center;
}
.lim-loader-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.lim-loader-label {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: var(--fs-xs);
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
}
.lim-loader-bar {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.12);
    position: relative;
    overflow: hidden;
}
.lim-loader-bar-fill {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width .08s linear;
}

/* ════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.lim-hero {
    min-height: 100vh;
    padding-top: 140px; padding-bottom: clamp(7rem, 9vw, 9rem);
    display: flex; flex-direction: column; justify-content: space-between;
    background: var(--bg);
    position: relative; overflow: hidden;
}
.lim-hero-meta {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 1rem; padding: 0 clamp(1.5rem, 4vw, 4rem);
}
.lim-hero-meta span {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: var(--fs-xs); letter-spacing: .22em; text-transform: uppercase;
    color: var(--muted);
}
.lim-hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: .92;
    letter-spacing: -.04em;
    text-transform: uppercase;
    color: var(--ink);
    margin: clamp(2rem, 4vw, 3rem) 0;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    word-break: break-word;
    overflow-wrap: anywhere;
}
.lim-hero-title .serif {
    font-weight: 400;
    text-transform: none;
    color: var(--accent);
    letter-spacing: -.02em;
}
.lim-hero-foot {
    display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: flex-end;
    gap: 2rem 3rem;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}
.lim-hero-lede {
    max-width: 38ch;
    color: var(--muted);
    font-size: var(--fs-base);
    line-height: 1.6;
}
.lim-hero-actions {
    display: flex; flex-wrap: wrap; gap: .75rem;
}
.lim-hero-scroll {
    position: absolute; bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: var(--fs-xs); letter-spacing: .3em; text-transform: uppercase;
    color: var(--muted);
    pointer-events: none;
    z-index: 1;
}
.lim-hero-scroll .line {
    width: 1px; height: 40px;
    background: var(--ink);
    transform-origin: top;
    animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50%      { transform: scaleY(1); transform-origin: top; }
    51%      { transform: scaleY(1); transform-origin: bottom; }
}

/* Hero ambient orb */
.lim-hero-orb {
    position: absolute;
    width: 70vw; max-width: 900px;
    height: 70vw; max-height: 900px;
    top: 15%; right: -15%;
    background: radial-gradient(circle, rgba(255,91,46,.22) 0%, rgba(255,91,46,0) 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(20px);
    /* Breathing glow — only filter/opacity, never transform (JS owns that) */
    animation: orbGlow 9s ease-in-out infinite;
}
/* Orbiting inner light */
.lim-hero-orb::before {
    content: '';
    position: absolute;
    width: 42%; height: 42%;
    top: 18%; left: 18%;
    background: radial-gradient(circle, rgba(255,140,55,.45) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(14px);
    animation: orbOrbit 16s linear infinite;
}
/* Drifting accent haze */
.lim-hero-orb::after {
    content: '';
    position: absolute;
    width: 58%; height: 58%;
    top: 4%; left: 4%;
    background: radial-gradient(circle, rgba(255,210,130,.14) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(26px);
    animation: orbDrift 11s ease-in-out infinite alternate;
}

@keyframes orbGlow {
    0%, 100% { filter: blur(20px); opacity: 1;   }
    50%       { filter: blur(36px); opacity: .68; }
}
@keyframes orbGlowCenter {
    0%, 100% { filter: blur(38px); opacity: .55; }
    50%       { filter: blur(22px); opacity: .85; }
}
@keyframes orbOrbit {
    0%   { transform: rotate(0deg)   translateX(30%) rotate(0deg);   }
    100% { transform: rotate(360deg) translateX(30%) rotate(-360deg); }
}
@keyframes orbDrift {
    0%   { transform: translate(0,    0)    scale(1);    }
    50%  { transform: translate(-9%, 13%)   scale(1.14); }
    100% { transform: translate( 7%, -7%)   scale(.92);  }
}

/* Centered orb — sits behind the headline, amber-gold tone */
.lim-hero-orb--center {
    top: 38%;
    left: 50%;
    right: auto;
    width: 54vw; max-width: 680px;
    height: 54vw; max-height: 680px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,170,60,.16) 0%, rgba(255,120,40,.06) 48%, transparent 70%);
    filter: blur(32px);
    /* phase-shifted: breathes out-of-sync with the right orb */
    animation: orbGlowCenter 11s ease-in-out infinite 2.5s;
}
.lim-hero-orb--center::before {
    background: radial-gradient(circle, rgba(255,200,80,.35) 0%, transparent 70%);
    /* reverse orbit direction */
    animation: orbOrbit 20s linear infinite reverse;
}
.lim-hero-orb--center::after {
    background: radial-gradient(circle, rgba(255,140,50,.12) 0%, transparent 65%);
    /* different drift timing */
    animation: orbDrift 13s ease-in-out infinite alternate-reverse;
}

@media (prefers-reduced-motion: reduce) {
    .lim-hero-orb,
    .lim-hero-orb::before,
    .lim-hero-orb::after { animation: none; }
}

/* ════════════════════════════════════════════════════════════════
   AWARDS / LOGO MARQUEE — two-row infinite scroll
═══════════════════════════════════════════════════════════════ */
.lim-marquee-section {
    padding: clamp(2rem, 3.5vw, 3.5rem) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    overflow: hidden;
}
.lim-marquee-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}
.lim-marquee {
    overflow: hidden;
}
.lim-marquee + .lim-marquee {
    margin-top: clamp(1rem, 1.5vw, 1.5rem);
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes marqueeScrollRev {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}
.lim-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
    animation: marqueeScroll 40s linear infinite;
    animation-play-state: paused;
    will-change: transform;
}
.lim-marquee-track.lim-marquee-rev {
    animation-name: marqueeScrollRev;
    animation-duration: 50s;
}
.lim-marquee-section.is-running .lim-marquee-track {
    animation-play-state: running;
}
.lim-marquee-section:hover .lim-marquee-track {
    animation-play-state: paused;
}
.lim-marquee-track img {
    height: clamp(36px, 4vw, 56px);
    width: auto;
    opacity: .5;
    filter: grayscale(100%);
    transition: opacity .35s ease, filter .35s ease;
    flex-shrink: 0;
    -webkit-user-drag: none;
    pointer-events: none;
}
.lim-marquee-section:hover .lim-marquee-track img {
    opacity: .75;
}
@media (prefers-reduced-motion: reduce) {
    .lim-marquee-track,
    .lim-marquee-track.lim-marquee-rev { animation: none; }
}

/* ════════════════════════════════════════════════════════════════
   SECTION HEAD (shared across content sections)
═══════════════════════════════════════════════════════════════ */
.lim-shead {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem 2rem;
    padding-bottom: clamp(1.25rem, 2vw, 2rem);
}
@media (min-width: 900px) {
    .lim-shead {
        grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) auto;
        align-items: end;
    }
}
.lim-shead-title {
    font-size: var(--fs-2xl);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -.035em;
    text-transform: uppercase;
    color: var(--ink);
    margin: .75rem 0 0;
    word-break: break-word;
}
.lim-shead-title .serif {
    text-transform: none; color: var(--accent);
    font-weight: 400; letter-spacing: -.02em;
}
.lim-shead-lede {
    color: var(--muted);
    font-size: var(--fs-base); line-height: 1.65;
    max-width: 44ch;
}
.lim-shead-cta {
    justify-self: end;
}

/* ════════════════════════════════════════════════════════════════
   RAIL (works + services share)
═══════════════════════════════════════════════════════════════ */
.lim-rail-wrap { position: relative; }
.lim-rail {
    display: flex;
    gap: clamp(1rem, 1.5vw, 1.5rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .5rem;
    cursor: grab;
}
.lim-rail::-webkit-scrollbar { display: none; }
.lim-rail.is-dragging { cursor: grabbing; user-select: none; }

.lim-rail-controls {
    display: flex; align-items: center; gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.lim-rail-count {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: .18em; color: var(--muted);
    min-width: 64px;
}
.lim-rail-progress {
    flex: 1; height: 1px; background: var(--line);
    position: relative; overflow: hidden;
}
.lim-rail-progress-bar {
    position: absolute; left: 0; top: -1px;
    height: 3px; background: var(--ink);
    width: 25%; transform: translateX(0);
    transition: transform .25s var(--ease), width .25s var(--ease);
}
.lim-rail-btn {
    width: 44px; height: 44px; border-radius: 999px;
    border: 1px solid var(--line); background: var(--bg);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--ink);
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.lim-rail-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.lim-rail-btn:disabled { opacity: .3; cursor: not-allowed; }
.lim-rail-btn:active { transform: scale(.95); }

/* ── Work card ── */
.lim-work-card {
    position: relative;
    flex: 0 0 auto;
    width: clamp(300px, 38vw, 540px);
    scroll-snap-align: start;
    display: flex; flex-direction: column;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 2vw, 2rem);
    color: var(--ink); text-decoration: none;
    transition: background .5s var(--ease), color .5s var(--ease),
                border-color .5s var(--ease), transform .5s var(--ease);
}
.lim-work-card:hover {
    background: var(--ink); color: #fff;
    border-color: var(--ink); transform: translateY(-4px);
}
.lim-work-topbar {
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--muted);
    transition: color .5s var(--ease);
}
.lim-work-card:hover .lim-work-topbar { color: rgba(255,255,255,.6); }
.lim-work-topbar .pip {
    display: inline-flex; align-items: center; gap: .35rem;
    color: var(--accent);
}
.lim-work-topbar .pip::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
}
.lim-work-bignum {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic; font-weight: 400;
    font-size: clamp(3.4rem, 5.5vw, 5rem);
    line-height: 1; letter-spacing: -.04em;
    margin: 1.25rem 0 1rem;
    transition: color .5s var(--ease);
}
.lim-work-card:hover .lim-work-bignum { color: var(--accent); }
.lim-work-thumb {
    aspect-ratio: 16 / 10;
    background: var(--bg);
    border-radius: calc(var(--radius) - 2px);
    overflow: hidden; margin-bottom: 1.25rem;
}
.lim-work-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s var(--ease);
}
.lim-work-card:hover .lim-work-thumb img { transform: scale(1.06); }
.lim-work-body { display: flex; flex-direction: column; gap: .65rem; }
.lim-work-title {
    font-size: clamp(1.35rem, 1.9vw, 1.7rem);
    font-weight: 500; letter-spacing: -.018em; line-height: 1.15;
}
.lim-work-desc {
    font-size: .9rem; line-height: 1.6; color: var(--muted);
    display: -webkit-box; -webkit-line-clamp: 2;
    line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    transition: color .5s var(--ease);
}
.lim-work-card:hover .lim-work-desc { color: rgba(255,255,255,.7); }
.lim-work-tags {
    display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .35rem;
}
.lim-work-tags span {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
    padding: 5px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    transition: border-color .5s var(--ease), color .5s var(--ease);
}
.lim-work-card:hover .lim-work-tags span {
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.7);
}
.lim-work-foot {
    margin-top: 1.25rem; padding-top: 1rem;
    border-top: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
    transition: border-color .5s var(--ease);
}
.lim-work-card:hover .lim-work-foot { border-color: rgba(255,255,255,.15); }
.lim-work-cta {
    display: inline-flex; align-items: center; gap: .55rem;
}
.lim-work-cta .dash {
    display: inline-block; height: 1px; width: 18px;
    background: currentColor;
    transition: width .35s var(--ease);
}
.lim-work-card:hover .lim-work-cta .dash { width: 32px; }

/* ── Service panel ── */
.lim-svc-panel {
    position: relative;
    flex: 0 0 auto;
    width: clamp(300px, 36vw, 500px);
    scroll-snap-align: start;
    text-decoration: none;
    display: flex; flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.75rem, 2.5vw, 2.5rem);
    color: var(--ink);
    min-height: clamp(440px, 52vw, 560px);
}

.lim-svc-panel-num {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic; font-weight: 500;
    font-size: clamp(3.6rem, 6vw, 5.5rem);
    line-height: 1; letter-spacing: -.04em;
    color: var(--ink);
    transition: color .5s var(--ease);
}

.lim-svc-panel-title {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 500; letter-spacing: -.018em; line-height: 1.15;
    margin: 1.25rem 0 .85rem;
}
.lim-svc-panel-desc {
    font-size: .92rem; line-height: 1.65;
    color: var(--muted);
    margin-bottom: 1.4rem;
    display: -webkit-box; -webkit-line-clamp: 3;
    line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    transition: color .5s var(--ease);
}

.lim-svc-panel-list {
    list-style: none; padding: 0; margin: 0 0 1.5rem;
    display: flex; flex-direction: column; gap: .55rem;
}
.lim-svc-panel-list li {
    font-size: .88rem; color: var(--ink);
    padding-left: 1.1rem; position: relative;
    transition: color .5s var(--ease);
}
.lim-svc-panel-list li::before {
    content: ''; position: absolute; left: 0; top: .55em;
    width: 6px; height: 1px; background: currentColor;
}

.lim-svc-panel-cta {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
    transition: border-color .5s var(--ease);
}

.lim-svc-panel-cta .arrow { transition: transform .35s var(--ease); }


/* ════════════════════════════════════════════════════════════════
   SERVICE LIST — simple numbered rows (home page)
═══════════════════════════════════════════════════════════════ */
.lim-svc-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}
.lim-svc-row {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    padding: clamp(1rem, 1.5vw, 1.35rem) 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: padding-left .3s var(--ease);
}
.lim-svc-row:hover { padding-left: .75rem; }
.lim-svc-row-num {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--muted);
    min-width: 2.25rem;
    flex-shrink: 0;
}
.lim-svc-row-name {
    flex: 1;
    font-size: clamp(1.05rem, 1.6vw, 1.4rem);
    font-weight: 500;
    letter-spacing: -.02em;
}
.lim-svc-row-arrow {
    font-size: 1.1rem;
    color: var(--muted);
    transition: transform .3s var(--ease), color .3s var(--ease);
    flex-shrink: 0;
}
.lim-svc-row:hover .lim-svc-row-arrow {
    transform: translateX(6px);
    color: var(--accent);
}

/* ════════════════════════════════════════════════════════════════
   SECTION VARIANT — alt background + top border (replaces inline styles)
═══════════════════════════════════════════════════════════════ */
.lim-section-on-alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
}

/* ════════════════════════════════════════════════════════════════
   SERVICE PANELS — atlantiser stacked sticky cards
═══════════════════════════════════════════════════════════════ */
.lim-section-svc {
    padding-bottom: 0;
    overflow: visible;
}
.lim-svc-panels {
    position: relative;
    margin-top: clamp(3rem, 5vw, 5rem);
}
.lim-svc-panel {
    position: sticky;
    top: 0;
    width: 100%;
    flex: none;
    background: var(--bg);
    min-height: 60vh;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: clamp(3rem, 5vw, 6rem) 0;
}
.lim-svc-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 8rem);
    width: 100%;
    align-items: stretch;
}
.lim-svc-panel-left {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
.lim-svc-panel-num {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--muted);
    display: block;
}
.lim-svc-panel-title {
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 1.1;
    color: var(--ink);
}
.lim-svc-panel-cta {
    align-self: flex-start;
    margin-top: auto;
}
.lim-svc-panel-details {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: .55rem;
}
.lim-svc-panel-details li {
    font-size: clamp(.8rem, 1vw, .9rem);
    color: var(--muted);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
}
.lim-svc-panel-details li::before {
    content: '—';
    position: absolute; left: 0;
    color: var(--accent);
    font-size: .75em;
    top: .15em;
}
.lim-svc-panel-right {
    display: flex;
    flex-direction: column;
}
.lim-svc-panel-desc {
    font-size: clamp(.9rem, 1.15vw, 1.1rem);
    line-height: 1.7;
    color: var(--muted);
    max-width: 44ch;
}
.lim-svc-panel-img {
    flex: 1;
    min-height: 320px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-alt);
}
.lim-svc-panel-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .lim-svc-panel-inner { grid-template-columns: 1fr; }
    .lim-svc-panel-title { font-size: clamp(2rem, 10vw, 4rem); }
    .lim-svc-panel-img   { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   SELECTED WORK — numbered rows (atlantiser services style)
═══════════════════════════════════════════════════════════════ */
.lim-work-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
    margin-top: clamp(3rem, 5vw, 5rem);
}
.lim-work-row {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
    padding: clamp(1.25rem, 2vw, 2rem) 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    position: relative;
    transition: padding-left .45s var(--ease), opacity .4s var(--ease);
}
/* Dim all siblings when any row is active */
.lim-work-list:has(.lim-work-row:hover) .lim-work-row:not(:hover) {
    opacity: .25;
}
.lim-work-row:hover { padding-left: .75rem; }
.lim-work-row-num {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--muted);
    min-width: 2.5rem;
    flex-shrink: 0;
    transition: color .35s var(--ease);
}
.lim-work-row:hover .lim-work-row-num { color: var(--accent); }
.lim-work-row-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    min-width: 0;
}
.lim-work-row-name {
    font-size: clamp(1.4rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: transform .4s var(--ease);
}
.lim-work-row:hover .lim-work-row-name { transform: translateX(10px); }
.lim-work-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem 1.25rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted);
    transition: transform .4s var(--ease);
}
.lim-work-row:hover .lim-work-row-meta { transform: translateX(10px); }
.lim-work-row-arrow {
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: transform .4s var(--ease), opacity .35s var(--ease);
}
.lim-work-row:hover .lim-work-row-arrow {
    opacity: 1;
    transform: translateX(0);
}
/* Cursor-following image preview */
.lim-work-preview {
    position: fixed;
    pointer-events: none;
    z-index: 500;
    width: clamp(200px, 18vw, 300px);
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    opacity: 0;
    transform: translate(-50%, -64%) scale(.82) rotate(-5deg);
    transition: opacity .3s var(--ease), transform .35s var(--ease);
    will-change: left, top;
    box-shadow: 0 28px 72px rgba(0,0,0,.22);
    background: var(--bg-alt);
}
.lim-work-preview.is-visible {
    opacity: 1;
    transform: translate(-50%, -64%) scale(1) rotate(0deg);
}
.lim-work-preview img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
@media (max-width: 640px) {
    .lim-work-row-name { font-size: 1.4rem; white-space: normal; }
    .lim-work-preview { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   RUNNING WORK CARDS
═══════════════════════════════════════════════════════════════ */
.lim-works-run {
    overflow: hidden;
    padding: clamp(2.5rem, 4vw, 4rem) 0;
    border-top: 1px solid var(--line);
    margin-top: clamp(3rem, 5vw, 5rem);
    /* Edge-fade: images dissolve into the section bg on both sides */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}
.lim-works-track {
    display: inline-flex;
    gap: clamp(1rem, 1.6vw, 1.6rem);
    animation: marqueeScroll 48s linear infinite;
    animation-play-state: paused;
    will-change: transform;
}
.lim-works-run.is-running .lim-works-track { animation-play-state: running; }
.lim-works-track:hover { animation-play-state: paused; }

/* Card shell — portrait ratio */
.lim-work-card {
    flex-shrink: 0;
    width: clamp(220px, 22vw, 320px);
    text-decoration: none;
    color: var(--ink);
    cursor: pointer;
}

/* Image wrapper — portrait 3/4 */
.lim-work-card-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
    position: relative;
}
.lim-work-card-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .8s var(--ease), filter .5s var(--ease), scale .8s var(--ease);
    filter: grayscale(35%) brightness(.96);
    transform-origin: center center;
}
.lim-work-card:hover .lim-work-card-img img {
    transform: scale(1.06);
    filter: grayscale(0) brightness(1);
}

/* Slide-up overlay */
.lim-work-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(.9rem,1.5vw,1.4rem);
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, .78) 0%,
        rgba(10, 10, 10, .28) 50%,
        transparent 100%
    );
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .45s var(--ease), transform .45s var(--ease);
    border-radius: var(--radius);
}
.lim-work-card:hover .lim-work-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.lim-work-card-overlay-body {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.lim-work-card-name {
    font-size: clamp(.95rem, 1.1vw, 1.15rem);
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.25;
    color: #fff;
}
.lim-work-card-meta {
    display: flex;
    gap: .25rem .75rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.6);
    flex-wrap: wrap;
}

/* Arrow badge — top-right */
.lim-work-card-arrow {
    position: absolute;
    top: .85rem;
    right: .85rem;
    width: 2rem; height: 2rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.22);
    font-size: .9rem;
    color: #fff;
    opacity: 0;
    transform: scale(.7) rotate(-45deg);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.lim-work-card:hover .lim-work-card-arrow {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

@media (prefers-reduced-motion: reduce) {
    .lim-works-track { animation: none; }
    .lim-work-card-overlay { opacity: 1; transform: none; }
    .lim-work-card-arrow  { opacity: 1; transform: none; }
}
.lim-process { background: var(--bg-alt); }
.lim-step-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 2rem;
    padding: clamp(2rem, 3.5vw, 3.5rem) 0;
    border-top: 1px solid var(--line);
    transition: padding-left .5s var(--ease);
    position: relative;
}
.lim-step-row:last-child { border-bottom: 1px solid var(--line); }
.lim-step-row:hover { padding-left: clamp(.5rem, 1vw, 1rem); }

@media (min-width: 900px) {
    .lim-step-row {
        grid-template-columns: auto minmax(0, 2fr) minmax(0, 3fr) auto;
        align-items: start;
    }
}

.lim-step-num {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic; font-weight: 400;
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    line-height: 1; letter-spacing: -.04em;
    color: var(--ink);
    transition: color .5s var(--ease);
}
.lim-step-row:hover .lim-step-num { color: var(--accent); }
.lim-step-title {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 500; letter-spacing: -.02em;
    line-height: 1.15;
}
.lim-step-desc {
    color: var(--muted);
    font-size: .95rem; line-height: 1.65;
    max-width: 56ch;
}
.lim-step-meta {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
    color: var(--muted);
    align-self: end;
}

/* ════════════════════════════════════════════════════════════════
   INDUSTRIES — chip wall (atlantiser "industries we work in")
═══════════════════════════════════════════════════════════════ */
.lim-industries {
    background: var(--bg);
    border-top: 1px solid var(--line);
}
.lim-chip-wall {
    display: flex; flex-wrap: wrap; gap: .6rem .75rem;
    margin-top: 2.5rem;
}
.lim-chip {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: 14px 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 1.05rem; font-weight: 500;
    color: var(--ink);
    background: var(--bg);
    transition: background .35s var(--ease), color .35s var(--ease),
                border-color .35s var(--ease), transform .35s var(--ease);
    cursor: default;
}
.lim-chip:hover {
    background: var(--ink); color: #fff;
    border-color: var(--ink);
    transform: translateY(-3px);
}
.lim-chip .idx {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px; letter-spacing: .2em; opacity: .55;
}

/* ════════════════════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════════════════ */
.lim-stat-row {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}
.lim-stat-row .grid > div {
    padding: clamp(2rem, 3vw, 3rem) clamp(1rem, 2vw, 2rem);
}
@media (min-width: 768px) {
    .lim-stat-row .grid > div + div { border-left: 1px solid var(--line); }
}
.lim-stat-num {
    font-family: var(--font-serif);
    font-style: italic; font-weight: 500;
    font-size: var(--fs-2xl);
    line-height: 1; letter-spacing: -.03em;
    color: var(--ink);
}
.lim-stat-num .suffix { color: var(--accent); }
.lim-stat-label {
    margin-top: 1rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--muted);
}

/* ════════════════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════════════ */
.lim-cta {
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    overflow: hidden;
}
.lim-cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-bottom: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
    border-bottom: 1px solid var(--line);
}
@media (max-width: 600px) {
    .lim-cta-stats { grid-template-columns: repeat(2, 1fr); }
}
.lim-cta-title {
    font-size: var(--fs-3xl);
    font-weight: 600;
    line-height: .95;
    letter-spacing: -.035em;
    text-transform: uppercase;
    color: var(--ink);
    max-width: 18ch;
    word-break: break-word;
}
.lim-cta-title .serif {
    text-transform: none; color: var(--accent);
    font-weight: 400;
}
.lim-cta-marquee {
    margin-top: clamp(4rem, 8vw, 8rem);
    border-top: 1px solid var(--line);
    padding-top: 2rem;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lim-cta-marquee-track {
    display: inline-flex; align-items: center;
    gap: 3rem;
    animation: marqueeScroll 35s linear infinite;
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--ink);
    white-space: nowrap;
}
.lim-cta-marquee-track .star { color: var(--accent); font-style: normal; }

/* ════════════════════════════════════════════════════════════════
   PAGE HERO (sub-pages: services, about, projects, collaboration…)
═══════════════════════════════════════════════════════════════ */
.lim-pagehero {
    padding: 180px 0 clamp(4rem, 8vw, 7rem);
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: relative; overflow: hidden;
}
.lim-pagehero-orb {
    position: absolute; width: 50vw; max-width: 700px;
    height: 50vw; max-height: 700px;
    top: -10%; right: -12%;
    background: radial-gradient(circle, rgba(255,91,46,.18) 0%, rgba(255,91,46,0) 60%);
    border-radius: 50%; pointer-events: none; filter: blur(20px); z-index: 0;
}
.lim-pagehero-inner { position: relative; z-index: 1; }
.lim-pagehero-meta {
    display: flex; gap: 1.5rem; align-items: center;
    margin-bottom: 1.75rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--muted);
}
.lim-pagehero-meta .crumb a { color: var(--ink); text-decoration: none; }
.lim-pagehero-meta .crumb a:hover { color: var(--accent); }
.lim-pagehero-title {
    font-size: var(--fs-3xl);
    font-weight: 600; line-height: .94; letter-spacing: -.04em;
    text-transform: uppercase; color: var(--ink);
    word-break: break-word;
    overflow-wrap: anywhere;
}
.lim-pagehero-title .serif {
    text-transform: none; color: var(--accent);
    font-weight: 400; letter-spacing: -.02em;
}
.lim-pagehero-lede {
    margin-top: 2rem; max-width: 56ch;
    color: var(--muted);
    font-size: var(--fs-md); line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.lim-footer {
    background: var(--ink);
    color: var(--bg);
    padding-top: clamp(3.5rem, 6vw, 5.5rem);
}

.lim-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    padding-bottom: clamp(2.5rem, 4vw, 4rem);
    border-bottom: 1px solid rgba(255,255,255,.09);
}
@media (max-width: 900px) {
    .lim-footer-top { grid-template-columns: 1fr 1fr; }
    .lim-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .lim-footer-top { grid-template-columns: 1fr; }
}

.lim-footer-wordmark {
    display: block;
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--bg);
    margin-bottom: .9rem;
}
.lim-footer-tagline {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.58);
    line-height: 1.65;
    max-width: 32ch;
    margin-bottom: 1.75rem;
}
.lim-footer-email-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--bg);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 2px;
    transition: border-color .25s var(--ease), color .25s var(--ease);
}
.lim-footer-email-link:hover { border-color: var(--accent); color: var(--accent); }

.lim-footer-col-label {
    display: block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.48);
    margin-bottom: 1.25rem;
}

.lim-footer-nav-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: .55rem;
}
.lim-footer-nav-list a {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.78);
    text-decoration: none;
    transition: color .25s var(--ease);
    display: inline-block;
}
.lim-footer-nav-list a:hover { color: var(--bg); }

.lim-footer-social {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-bottom: 1.5rem;
}
.lim-footer-social a {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.78);
    text-decoration: none;
    transition: color .25s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.lim-footer-social a:hover { color: var(--bg); }
.lim-footer-address {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.48);
    line-height: 1.65;
    margin-top: .5rem;
}

.lim-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    padding: 1.35rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
    margin-top: 0;
}
.lim-footer-bottom span {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.48);
}
.lim-footer-bottom .mono {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════
   MISC
═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
