/* Global Cursor Hide */
html, body, * {
    cursor: none !important;
}

html {
    background: #080808;
    scroll-behavior: auto;
}

/* Base Styles */
body {
    background-color: #080808;
    color: #E4E4E4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

section {
    isolation: isolate;
}

section:not(:first-child)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(197,160,89,.035), transparent 34%);
}

/* Each chapter has a quiet visual signature. These layers stay behind the
   content, adding atmosphere without turning the page into a collection of
   loud panels. */
section::after {
    content: "";
    position: absolute;
    inset: 1rem;
    z-index: 0;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,.035);
    opacity: .7;
}

.hero-section::after {
    inset: 1rem 1rem 1.5rem;
    border-color: rgba(197,160,89,.12);
    border-left-color: transparent;
    border-bottom-color: transparent;
}

.hero-section::before {
    background:
        linear-gradient(90deg, transparent 0 49.9%, rgba(255,255,255,.025) 50%, transparent 50.1%),
        radial-gradient(circle at 72% 42%, rgba(197,160,89,.08), transparent 26%);
    background-size: 100% 100%, 100% 100%;
}

.hero-signal {
    position: relative;
    width: min(100%, 29rem);
    padding: 0 0 .9rem;
    border-bottom: 1px solid rgba(228,228,228,.13);
    background: transparent;
}

.hero-signal-index {
    display: grid;
    width: 1.8rem;
    height: 1.35rem;
    place-items: center;
    border-right: 1px solid rgba(197,160,89,.35);
    color: #C5A059;
    font: 400 .95rem/.9 Anton, sans-serif;
    letter-spacing: -.04em;
}

.hero-signal-copy {
    color: rgba(228,228,228,.42);
    font-size: 9px;
    letter-spacing: .22em;
    white-space: nowrap;
}

.hero-signal-copy span {
    margin: 0 .35rem;
    color: rgba(197,160,89,.5);
}

.mix-blend-difference {
    transition: opacity .6s ease;
}

/* The navigation is a small piece of studio hardware: warm signal, smoked
   glass and enough breathing room to stay legible over every image. */
.site-nav {
    --nav-gold: #C5A059;
    --nav-ink: #E4E4E4;
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    padding: 1.15rem clamp(1rem, 3vw, 2.5rem);
    pointer-events: none;
    transition: transform .65s cubic-bezier(.16, 1, .3, 1), padding .65s cubic-bezier(.16, 1, .3, 1);
}

.site-nav.is-scrolled {
    padding-top: .7rem;
    padding-bottom: .7rem;
}

.site-nav.is-hidden {
    transform: translateY(calc(-100% - 1rem));
}

.site-nav-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    width: min(100%, 1480px);
    min-height: 4.2rem;
    margin: 0 auto;
    padding: .55rem .65rem .55rem 1rem;
    border: 1px solid rgba(228,228,228,.13);
    border-radius: 1.15rem;
    background:
        linear-gradient(115deg, rgba(255,255,255,.075), transparent 32%),
        rgba(10,10,10,.72);
    box-shadow: 0 1.5rem 4rem rgba(0,0,0,.23), inset 0 1px rgba(255,255,255,.07);
    backdrop-filter: blur(22px) saturate(125%);
    -webkit-backdrop-filter: blur(22px) saturate(125%);
    pointer-events: auto;
    overflow: hidden;
}

.site-brand,
.site-nav-links,
.site-nav-partner {
    display: flex;
    align-items: center;
}

.site-brand {
    justify-self: start;
    position: relative;
    z-index: 1;
    gap: .7rem;
    color: var(--nav-ink);
    text-decoration: none;
    transition: transform .35s ease;
}

.site-brand:hover,
.site-brand:focus-visible {
    transform: translateX(2px);
}

.site-brand-mark {
    display: grid;
    place-items: center;
    padding-right: 1rem;
    border-right: 1px solid rgba(197,160,89,.35);
}

.site-brand img {
    width: auto;
    height: 2.15rem;
    object-fit: contain;
}

.site-brand-name {
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    letter-spacing: .04em;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--nav-ink);
    white-space: nowrap;
}
.site-brand-name em {
    font-style: normal;
    color: var(--nav-gold);
}

.site-nav-center {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-nav-links {
    position: relative;
    gap: .1rem;
    padding: .3rem;
    border: 1px solid rgba(228,228,228,.1);
    border-radius: .8rem;
    background: rgba(0,0,0,.24);
    box-shadow: inset 0 1px rgba(255,255,255,.05);
}

.site-nav-links a,
.site-nav-partner {
    position: relative;
    z-index: 1;
    color: rgba(228,228,228,.58);
    font: 500 8px/1 Inter, sans-serif;
    letter-spacing: .16em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .35s ease, transform .35s ease;
}

.site-nav-links a {
    padding: .72rem .85rem;
}

.site-nav-links a::after {
    content: "";
    position: absolute;
    right: .85rem;
    bottom: .45rem;
    left: .85rem;
    height: 1px;
    background: var(--nav-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible,
.site-nav-links a.is-active {
    color: var(--nav-ink);
}

.site-nav-links a:hover::after,
.site-nav-links a:focus-visible::after,
.site-nav-links a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav-partner {
    justify-self: end;
    position: relative;
    z-index: 1;
    gap: .65rem;
    color: var(--nav-gold);
    font: 600 9px/1 Inter, sans-serif;
    letter-spacing: .16em;
    padding: .85rem .9rem .85rem 1rem;
    border-left: 1px solid rgba(197,160,89,.28);
    transition: color .35s ease, background .35s ease, padding .35s ease;
}

.site-nav-partner:hover,
.site-nav-partner:focus-visible {
    color: #f3d899;
    background: rgba(197,160,89,.08);
    padding-right: 1.1rem;
}

.site-nav-dot {
    position: relative;
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    background: var(--nav-gold);
    box-shadow: 0 0 14px rgba(197,160,89,.8);
}

.site-nav-arrow {
    font-size: 12px;
    line-height: 1;
    transition: transform .35s ease;
}

.site-nav-partner:hover .site-nav-arrow,
.site-nav-partner:focus-visible .site-nav-arrow {
    transform: translate(2px, -2px);
}

.site-nav-toggle {
    display: none;
}

@media (max-width: 767px) {
    .site-nav {
        padding: .75rem .7rem;
    }

    .site-nav-inner {
        grid-template-columns: 1fr auto;
        min-height: 3.65rem;
        padding: .45rem .5rem .45rem .7rem;
        border-radius: .9rem;
    }

    .site-brand-mark {
        width: auto;
        height: auto;
    }

    .site-brand img {
        height: 1.8rem;
    }

    .site-brand-name {
        font-size: .82rem;
    }

    .site-nav-center,
    .site-nav-partner {
        display: none;
    }

    .site-nav-toggle {
        position: relative;
        z-index: 3;
        display: flex;
        width: 2.8rem;
        height: 2.8rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .35rem;
        border: 1px solid rgba(197,160,89,.35);
        border-radius: .65rem;
        background: rgba(197,160,89,.08);
        color: var(--nav-gold);
        cursor: pointer !important;
    }

    .site-nav-toggle span {
        display: block;
        width: 1rem;
        height: 1px;
        background: currentColor;
        transition: transform .4s ease, width .4s ease;
    }

    .site-nav-toggle span:last-child {
        width: .65rem;
        margin-left: .35rem;
    }

    .site-nav.is-menu-open .site-nav-toggle span:first-child {
        transform: translateY(.2rem) rotate(45deg);
    }

    .site-nav.is-menu-open .site-nav-toggle span:last-child {
        width: 1rem;
        margin-left: 0;
        transform: translateY(-.2rem) rotate(-45deg);
    }

    .site-nav.is-menu-open .site-nav-inner {
        overflow: visible;
    }

    .site-nav.is-menu-open .site-nav-center {
        position: absolute;
        top: calc(100% + .6rem);
        right: 0;
        left: 0;
        display: block;
        padding: .55rem;
        border: 1px solid rgba(228,228,228,.13);
        border-radius: .9rem;
        background: rgba(10,10,10,.9);
        box-shadow: 0 1.5rem 3rem rgba(0,0,0,.3);
        backdrop-filter: blur(22px);
        animation: nav-panel-in .45s cubic-bezier(.16, 1, .3, 1) both;
    }

    .site-nav.is-menu-open .site-nav-links {
        display: flex;
        flex-direction: column;
        gap: .15rem;
        padding: .2rem;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .site-nav.is-menu-open .site-nav-links a {
        padding: .85rem .7rem;
        font-size: 9px;
    }

    .site-nav.is-menu-open .site-nav-links a::after {
        right: .7rem;
        bottom: .55rem;
        left: .7rem;
    }

    @keyframes nav-panel-in {
        from { opacity: 0; transform: translateY(-.5rem) scale(.98); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-nav,
    .site-nav-links a::after,
    .site-nav-toggle span {
        animation: none !important;
        transition-duration: .01ms !important;
    }

    .site-nav.is-hidden {
        transform: none;
    }
}

/* Glass navigation: minimal in shape, substantial enough to anchor the
   opening frame like a piece of hardware floating above the page. */
.site-nav {
    padding: 1rem clamp(1rem, 4vw, 3.5rem);
}

.site-nav-inner {
    display: flex;
    width: min(100%, 1480px);
    min-height: 4rem;
    justify-content: space-between;
    padding: .5rem .65rem .5rem 1rem;
    border: 1px solid rgba(228,228,228,.16);
    border-radius: 1.15rem;
    background:
        linear-gradient(115deg, rgba(255,255,255,.09), transparent 34%),
        rgba(12,12,12,.62);
    box-shadow:
        0 1.5rem 4rem rgba(0,0,0,.22),
        inset 0 1px rgba(255,255,255,.09);
    backdrop-filter: blur(24px) saturate(135%);
    -webkit-backdrop-filter: blur(24px) saturate(135%);
    overflow: visible;
}

.site-nav-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 25%, rgba(197,160,89,.08) 50%, transparent 75%);
    transform: translateX(-100%);
    animation: glass-sheen 11s cubic-bezier(.4, 0, .2, 1) infinite;
}

.site-brand {
    gap: 0;
    width: 3rem;
    height: 2.6rem;
    justify-content: center;
    border-radius: .7rem;
    background: rgba(197,160,89,.08);
    box-shadow: inset 0 0 0 1px rgba(197,160,89,.14);
    transition: background .45s ease, translate .7s cubic-bezier(.16, 1, .3, 1);
}

.site-brand-mark {
    width: auto;
    height: auto;
    border-right: 0;
}

.site-brand img {
    height: 2.05rem;
}

.site-nav-center {
    margin-left: auto;
    margin-right: 2rem;
}

.site-nav-links {
    gap: .15rem;
    padding: .25rem;
    border: 1px solid rgba(228,228,228,.12);
    border-radius: .85rem;
    background: rgba(0,0,0,.22);
    box-shadow: inset 0 1px rgba(255,255,255,.06);
}

.site-nav-links a {
    padding: .7rem .85rem;
    color: rgba(228,228,228,.52);
    font-size: 8px;
    letter-spacing: .17em;
    border-radius: .55rem;
    transition: color .35s ease, background .5s ease, translate .7s cubic-bezier(.16, 1, .3, 1);
}

.site-nav-links a::before {
    content: "";
    position: absolute;
    top: .45rem;
    left: .45rem;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--nav-gold);
    opacity: 0;
    transform: scale(0);
    transition: opacity .35s ease, transform .45s cubic-bezier(.16, 1, .3, 1);
}

.site-nav-links a::after {
    right: .75rem;
    bottom: .35rem;
    left: .75rem;
    background: var(--nav-gold);
    transform-origin: left;
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible,
.site-nav-links a.is-active {
    color: var(--nav-ink);
    background: rgba(197,160,89,.12);
}

.site-nav-links a:hover::before,
.site-nav-links a:focus-visible::before,
.site-nav-links a.is-active::before {
    opacity: 1;
    transform: scale(1);
}

.site-nav-partner {
    gap: .6rem;
    padding: .7rem .85rem .7rem 1rem;
    border-left: 1px solid rgba(197,160,89,.24);
    color: rgba(197,160,89,.75);
    font-size: 8px;
    letter-spacing: .17em;
    transition: color .35s ease, background .45s ease, translate .7s cubic-bezier(.16, 1, .3, 1);
}

.site-nav-partner:hover,
.site-nav-partner:focus-visible {
    padding-right: .85rem;
    background: rgba(197,160,89,.08);
}

.site-nav-dot {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 9px rgba(197,160,89,.9);
}

.site-nav-dot::after {
    display: none;
}

.site-nav-arrow {
    font-size: 11px;
}

@keyframes glass-sheen {
    0%, 62%, 100% { transform: translateX(-100%); opacity: 0; }
    70% { opacity: 1; }
    82% { transform: translateX(100%); opacity: 0; }
}

@media (max-width: 767px) {
    .site-nav {
        padding: .95rem .85rem;
    }

    .site-nav-inner {
        min-height: 3.6rem;
        padding: .45rem .5rem .45rem .65rem;
    }

    .site-nav-center {
        margin: 0;
    }

    .site-nav-toggle {
        width: 2.6rem;
        height: 2.6rem;
        border: 1px solid rgba(197,160,89,.3);
        border-radius: .65rem;
        background: rgba(197,160,89,.08);
    }

    .site-nav.is-menu-open .site-nav-center {
        top: calc(100% + .7rem);
        right: 0;
        left: auto;
        width: min(15rem, calc(100vw - 1.7rem));
        padding: .55rem .8rem .8rem;
        border: 1px solid rgba(228,228,228,.14);
        border-top: 1px solid rgba(197,160,89,.5);
        border-radius: 0 0 .6rem .6rem;
        background: rgba(8,8,8,.94);
        box-shadow: 0 1.5rem 3rem rgba(0,0,0,.28);
    }

    .site-nav.is-menu-open .site-nav-links {
        gap: .1rem;
    }

    .site-nav.is-menu-open .site-nav-links a {
        padding: .78rem .2rem;
    }

    .site-nav.is-menu-open .site-nav-links a::before {
        top: 50%;
        left: -.35rem;
        transform: translateY(-50%) scale(0);
    }

    .site-nav.is-menu-open .site-nav-links a:hover::before,
    .site-nav.is-menu-open .site-nav-links a:focus-visible::before,
    .site-nav.is-menu-open .site-nav-links a.is-active::before {
        transform: translateY(-50%) scale(1);
    }
}

/* The room selector is the first discovery point after the landing screen. */
#smooth-content {
    display: flex;
    flex-direction: column;
}

#smooth-content > section {
    order: 10;
}

#smooth-content > section:first-child {
    order: 1;
}

#smooth-content > .studio-section {
    order: 2;
}

#smooth-content > section:nth-child(2) {
    order: 3;
}

/* Stagger Text Split - Utility for lines */
.line-wrapper {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

/* Noise & Glitch Aesthetics - Toned Down */
.noise-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
    filter: contrast(120%) brightness(80%);
    animation: grain-drift 8s steps(2) infinite;
    will-change: transform;
}

.glitch-lines {
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 100% 2px;
    animation: scan-drift 12s linear infinite;
    will-change: background-position;
}

.glitch-hover:hover {
    animation: glitch-anim 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

/* Premium signal imperfections: short, low-amplitude bursts that read like
   analog equipment settling into focus rather than a loud digital effect. */
.glitch-target {
    position: relative;
    isolation: isolate;
}

.glitch-target::after {
    content: attr(data-glitch);
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    color: transparent;
    -webkit-text-stroke: 1px rgba(197,160,89,0);
    opacity: 0;
    transform: translate(0);
}

.glitch-target.is-glitching {
    animation: premium-text-glitch .62s steps(2, end) both;
}

.glitch-target.is-glitching::after {
    opacity: .35;
    -webkit-text-stroke-color: rgba(197,160,89,.32);
    animation: premium-ghost-glitch .62s steps(2, end) both;
}

@keyframes premium-text-glitch {
    0%, 100% { transform: translate(0); text-shadow: none; }
    18% { transform: translate(-1px, 0); text-shadow: 1px 0 rgba(197,160,89,.24); }
    34% { transform: translate(1px, 0); text-shadow: -1px 0 rgba(228,228,228,.16); }
    52% { transform: translate(0, 1px); text-shadow: 1px 0 rgba(197,160,89,.2); }
    72% { transform: translate(-1px, 0); text-shadow: -1px 0 rgba(228,228,228,.12); }
}

@keyframes premium-ghost-glitch {
    0%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    20% { clip-path: inset(15% 0 62% 0); transform: translate(3px, 0); }
    42% { clip-path: inset(58% 0 20% 0); transform: translate(-3px, 0); }
    68% { clip-path: inset(34% 0 42% 0); transform: translate(2px, 0); }
}

@keyframes premium-image-shift {
    0%, 100% { clip-path: inset(0); transform: translate(0); }
    22% { clip-path: inset(8% 0 64% 0); transform: translate(-3px, 0); }
    44% { clip-path: inset(54% 0 18% 0); transform: translate(3px, 0); }
    68% { clip-path: inset(26% 0 46% 0); transform: translate(-1px, 0); }
}

@keyframes premium-scan-shift {
    0%, 100% { transform: translateY(-8px); }
    28% { transform: translateY(3px); }
    58% { transform: translateY(-2px); }
}

@keyframes glitch-anim {
    0% { transform: translate(0); text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9; }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9; }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes grain-drift {
    0%, 100% { transform: translate3d(0, 0, 0); }
    25% { transform: translate3d(-2%, 1%, 0); }
    50% { transform: translate3d(1%, -2%, 0); }
    75% { transform: translate3d(2%, 2%, 0); }
}

@keyframes scan-drift {
    from { background-position: 0 0; }
    to { background-position: 0 18px; }
}

/* Smooth Transition States */
.reveal-img {
    opacity: 1;
    will-change: opacity, transform;
    clip-path: inset(0);
    transition: none;
}

.reveal-img[style*="opacity: 1"] {
    clip-path: inset(0 0 0 0);
}

.text-reveal, .fade-up {
    opacity: 0;
    transform: translateY(15px);
    will-change: transform, opacity;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(228, 228, 228, 0.3);
}

.hero-reveal-fast {
    filter: blur(18px);
    transition: filter 2s cubic-bezier(.16, 1, .3, 1);
}

.hero-reveal-fast[style*="opacity"] {
    filter: blur(0);
}

.reveal-img img,
.studio-panel-image,
#impact-bg {
    will-change: transform;
}

/* Image frames reveal their original color on hover without changing scale. */
.reveal-img img,
.studio-panel-image,
.events-poster img,
#impact-bg {
    transition: transform 1.2s cubic-bezier(.16, 1, .3, 1), filter 1.2s ease !important;
}

#hero-img,
#manifesto-img {
    transition: filter 1.8s cubic-bezier(.16, 1, .3, 1) !important;
}

/* Fine art-like image treatment */
.reveal-img::after,
.studio-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 0;
    mix-blend-mode: screen;
}

.reveal-img,
.studio-panel {
    overflow: hidden;
}

/* Shared pointer language: objects make a very small, physical response to
   the cursor. The movement is deliberately quieter than the typography. */
.pointer-hover {
    --hover-x: 0px;
    --hover-y: 0px;
    translate: var(--hover-x) var(--hover-y);
    will-change: translate;
    transition: translate .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal-img.pointer-hover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(
        circle at calc(50% + var(--hover-light-x, 0px)) calc(50% + var(--hover-light-y, 0px)),
        rgba(197,160,89,.16),
        transparent 24%
    );
    opacity: 0;
    mix-blend-mode: screen;
    transition: opacity .8s ease;
}

.reveal-img.pointer-hover:hover::before,
.reveal-img.pointer-hover:focus-visible::before {
    opacity: 1;
}

.studio-book {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.studio-book::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(197,160,89,.14);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .65s cubic-bezier(.16, 1, .3, 1);
}

.studio-book:hover,
.studio-book:focus-visible {
    color: #f1d58e;
    background: transparent;
    transform: none;
}

.studio-book:hover::before,
.studio-book:focus-visible::before {
    transform: scaleX(1);
    transform-origin: left;
}

.studio-book span {
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.studio-book:hover span,
.studio-book:focus-visible span {
    transform: translate(2px, -2px);
}

.outro-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .outro-actions {
        flex-direction: row;
        max-width: none;
        gap: 1rem;
    }
}

.outro-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    width: 100%;
    max-width: 19rem;
    padding: .85rem 1.25rem;
    border-radius: 9999px;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .outro-btn {
        width: auto;
        max-width: none;
        padding: 1.05rem 2.2rem;
        font-size: 12px;
        letter-spacing: .2em;
    }
}

.outro-btn-primary {
    background: #C5A059;
    color: #080808;
    border: 1px solid #C5A059;
    box-shadow: 0 .4rem 2rem rgba(197,160,89,.22);
}

.outro-btn-primary:hover,
.outro-btn-primary:focus-visible {
    background: transparent;
    color: #C5A059;
    border-color: #C5A059;
    box-shadow: 0 .6rem 2.5rem rgba(197,160,89,.38);
    transform: translateY(-1px);
}

.outro-btn-secondary {
    background: rgba(255,255,255,.03);
    color: rgba(228,228,228,.85);
    border: 1px solid rgba(197,160,89,.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.outro-btn-secondary:hover,
.outro-btn-secondary:focus-visible {
    color: #C5A059;
    border-color: #C5A059;
    background: rgba(197,160,89,.08);
    transform: translateY(-1px);
}

.outro-btn-icon {
    width: .85rem;
    height: .85rem;
    flex-shrink: 0;
    transition: transform .35s ease;
}

.outro-btn:hover .outro-btn-icon {
    transform: scale(1.15);
}

.community-section .relative.reveal-img,
.manifesto-visual .reveal-img,
.hero-section .reveal-img {
    border-color: rgba(228,228,228,.08);
    transition: border-color .7s ease, translate .7s cubic-bezier(.16, 1, .3, 1);
}

.community-section .relative.reveal-img:hover,
.manifesto-visual .reveal-img:hover,
.hero-section .reveal-img:hover {
    border-color: rgba(197,160,89,.35);
}

.studio-section {
    background:
        linear-gradient(90deg, transparent 0 7%, rgba(197,160,89,.045) 7.05%, transparent 7.1%),
        radial-gradient(circle at 76% 36%, rgba(197,160,89,.08), transparent 23%),
        linear-gradient(180deg, #080808 0%, #0b0b0a 50%, #080808 100%);
}

.studio-section::before {
    background:
        radial-gradient(circle at 84% 58%, rgba(197,160,89,.09), transparent 18%),
        linear-gradient(90deg, transparent 0 7%, rgba(197,160,89,.045) 7.05%, transparent 7.1%);
    animation: studio-glow 10s ease-in-out infinite alternate;
}

@keyframes studio-glow {
    from { opacity: .65; transform: translate3d(-1%, 0, 0); }
    to { opacity: 1; transform: translate3d(1%, -1%, 0); }
}

.studio-section::after {
    inset: 2rem;
    border-color: rgba(197,160,89,.1);
    clip-path: polygon(0 0, 18% 0, 18% 1px, 100% 1px, 100% 100%, 82% 100%, 82% calc(100% - 1px), 0 calc(100% - 1px));
}

.studio-shell::before {
    content: "LFC / 03";
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(197,160,89,.62);
    font: 500 9px/1 Inter, sans-serif;
    letter-spacing: .3em;
    writing-mode: vertical-rl;
    transform: translateX(-2.5rem);
}

.studio-heading-meta,
.studio-panels-topline {
    color: rgba(228,228,228,.42);
    font: 500 9px/1 Inter, sans-serif;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.studio-heading-meta {
    display: flex;
    align-items: center;
    gap: .8rem;
    align-self: flex-start;
    padding-top: .85rem;
    white-space: nowrap;
}

.studio-heading-rule {
    width: 2.5rem;
    height: 1px;
    background: rgba(197,160,89,.7);
}

.studio-heading-mark {
    align-self: flex-start;
    margin-top: .2rem;
    color: rgba(197,160,89,.6);
    font-size: 1.1rem;
    transform: rotate(15deg);
}

.studio-panels-wrap {
    position: relative;
}

.studio-panels-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .1rem 0 .8rem;
}

.studio-panels-hint {
    color: rgba(228,228,228,.26);
    letter-spacing: .16em;
}

.studio-panels-hint i {
    margin-left: .45rem;
    color: #C5A059;
    font-size: 14px;
    font-style: normal;
}

.studio-panels {
    box-shadow: none;
    border-radius: 2px;
    box-shadow: 0 35px 100px rgba(0,0,0,.35);
}

.studio-panel:nth-child(2) {
    transform: translateY(.8rem);
}

.studio-panel:nth-child(2):hover,
.studio-panel:nth-child(2):focus-visible,
.studio-panel:nth-child(2).is-active {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Studio focus gallery */
.studio-shell {
    position: relative;
}

.manifesto-section {
    background:
        linear-gradient(135deg, rgba(255,255,255,.018) 0 1px, transparent 1px 100%),
        radial-gradient(circle at 18% 52%, rgba(197,160,89,.055), transparent 28%),
        #080808;
    background-size: 5rem 5rem, auto, auto;
}

.manifesto-section::after {
    inset: 2rem 1rem;
    border-color: rgba(255,255,255,.06);
    border-top-color: transparent;
    border-right-color: transparent;
}

.manifesto-shell {
    min-height: 78svh;
}

.manifesto-visual {
    min-height: 38rem;
}

.manifesto-visual::before {
    content: "LFC / 02";
    position: absolute;
    left: -2.5rem;
    top: 2rem;
    color: rgba(197,160,89,.7);
    font: 500 9px/1 Inter, sans-serif;
    letter-spacing: .3em;
    writing-mode: vertical-rl;
}

.manifesto-copy {
    max-width: 42rem;
}

.manifesto-copy h2 {
    text-wrap: balance;
}

.manifesto-description {
    max-width: 32rem;
}

.studio-heading {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.studio-heading h2 {
    margin: 0;
    max-width: 44rem;
    text-align: right;
    font-size: clamp(4rem, 8vw, 8rem);
}

.studio-panels {
    display: flex;
    width: 100%;
    height: min(59svh, 600px);
    min-height: 440px;
    gap: 5px;
    overflow: hidden;
    background: rgba(0,0,0,.32);
}

.events-section {
    background:
        radial-gradient(ellipse at 76% 26%, rgba(197,160,89,.075), transparent 24%),
        radial-gradient(ellipse at 16% 80%, rgba(28,57,96,.16), transparent 35%),
        linear-gradient(180deg, #0a0a0a, #080808 65%, #0d0c0a);
}

.events-section::before {
    background:
        linear-gradient(90deg, transparent 0 13%, rgba(197,160,89,.06) 13.05%, transparent 13.1%),
        linear-gradient(0deg, transparent 0 83%, rgba(255,255,255,.025) 83.1%, transparent 83.2%);
}

.events-section::after {
    inset: 1.75rem;
    border-color: rgba(197,160,89,.09);
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.events-poster {
    position: absolute;
    top: -10%;
    right: -2%;
    z-index: 0;
    width: min(38vw, 31rem);
    height: 120%;
    overflow: hidden;
    opacity: .2;
    mix-blend-mode: screen;
    transform: rotate(4deg);
    pointer-events: none;
}

.events-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.72) contrast(1.15);
}

.events-poster-wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #080808 2%, rgba(8,8,8,.42) 42%, rgba(8,8,8,.05) 100%),
        linear-gradient(180deg, #080808 0%, transparent 17%, transparent 78%, #080808 100%);
}

.events-shell {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.events-heading {
    position: relative;
    display: grid;
    grid-template-columns: 10rem minmax(0, 1fr) 4rem;
    align-items: end;
    gap: 2rem;
    margin-bottom: 3.5rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.events-heading-meta {
    display: flex;
    align-items: center;
    gap: .7rem;
    align-self: start;
    padding-top: .55rem;
    color: rgba(197,160,89,.8);
    font: 600 8px/1.3 Inter, sans-serif;
    letter-spacing: .22em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.events-heading-rule {
    width: 1px;
    height: 2.8rem;
    background: linear-gradient(180deg, #c5a059, transparent);
}

.events-heading-copy {
    min-width: 0;
}

.events-kicker {
    margin: 0 0 .85rem;
    color: rgba(228,228,228,.52);
    font: 500 9px/1 Inter, sans-serif;
    letter-spacing: .42em;
    text-transform: uppercase;
}

.events-heading h2 {
    margin: 0;
    max-width: 48rem;
}

.events-heading-note {
    margin: 1.15rem 0 0;
    color: rgba(228,228,228,.66);
    font: italic 400 1rem/1.35 "Cormorant Garamond", serif;
    letter-spacing: .04em;
}

.events-heading-mark {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(197,160,89,.35);
    border-radius: 50%;
    color: #c5a059;
    font-size: 1.15rem;
    animation: events-mark-pulse 4s ease-in-out infinite;
}

.events-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
}

.events-card {
    position: relative;
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr) 2rem;
    align-items: center;
    min-height: 10.4rem;
    padding: 1.3rem 1.25rem 1.3rem 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(228,228,228,.1);
    background:
        linear-gradient(110deg, rgba(255,255,255,.06), transparent 45%),
        rgba(8,8,8,.62);
    box-shadow: inset 0 1px rgba(255,255,255,.05);
    cursor: pointer;
    outline: none;
    transition: border-color .55s ease, background .55s ease, transform .55s cubic-bezier(.16,1,.3,1), box-shadow .55s ease;
}

.events-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: #c5a059;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .55s cubic-bezier(.16,1,.3,1);
}

.events-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(197,160,89,.13), transparent 40%);
    opacity: 0;
    transition: opacity .55s ease;
    pointer-events: none;
}

.events-card:hover,
.events-card:focus-visible,
.events-card.is-active {
    border-color: rgba(197,160,89,.55);
    background:
        linear-gradient(110deg, rgba(197,160,89,.13), transparent 48%),
        rgba(12,11,9,.78);
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,.23), inset 0 1px rgba(255,255,255,.08);
    transform: translateY(-3px);
}

.events-card:hover::before,
.events-card:focus-visible::before,
.events-card.is-active::before {
    transform: scaleY(1);
}

.events-card:hover::after,
.events-card:focus-visible::after,
.events-card.is-active::after {
    opacity: 1;
}

.events-card-date,
.events-card-main,
.events-card-arrow {
    position: relative;
    z-index: 1;
}

.events-card-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .15rem;
    border-right: 1px solid rgba(197,160,89,.28);
}

.events-card-date strong {
    color: #e4e4e4;
    font: 400 3.65rem/.78 Anton, sans-serif;
    letter-spacing: -.04em;
}

.events-card-date span {
    color: #c5a059;
    font: 600 8px/1 Inter, sans-serif;
    letter-spacing: .27em;
}

.events-card-main {
    min-width: 0;
    padding-left: 1.25rem;
}

.events-card-type {
    display: block;
    margin-bottom: .65rem;
    color: rgba(197,160,89,.72);
    font: 600 7px/1 Inter, sans-serif;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.events-card-main h3 {
    margin: 0;
    color: #e4e4e4;
    font: 400 clamp(2.8rem, 5.3vw, 5.25rem)/.78 Anton, sans-serif;
    letter-spacing: -.035em;
    text-transform: uppercase;
    transition: color .4s ease, transform .55s cubic-bezier(.16,1,.3,1);
}

.events-card-main p {
    margin: .5rem 0 0;
    color: rgba(228,228,228,.78);
    font: 400 clamp(1.1rem, 1.6vw, 1.55rem)/1 Anton, sans-serif;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.events-card-main p i {
    color: rgba(197,160,89,.65);
    font-style: normal;
    padding: 0 .35rem;
}

.events-card.is-active .events-card-main h3,
.events-card:hover .events-card-main h3,
.events-card:focus-visible .events-card-main h3 {
    color: #c5a059;
    transform: translateX(4px);
}

.events-card-arrow {
    align-self: start;
    justify-self: end;
    color: rgba(197,160,89,.72);
    font: 400 1.3rem/1 Inter, sans-serif;
    opacity: .35;
    transform: translate(-2px, 2px);
    transition: opacity .4s ease, transform .45s cubic-bezier(.16,1,.3,1);
}

.events-card:hover .events-card-arrow,
.events-card:focus-visible .events-card-arrow,
.events-card.is-active .events-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.events-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 5rem;
    align-items: center;
    gap: 2rem;
    margin-top: 1.2rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.events-footer-label {
    color: rgba(228,228,228,.82);
    font: 400 clamp(1rem, 1.55vw, 1.4rem)/1 Anton, sans-serif;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.events-footer-label span {
    color: #c5a059;
    padding: 0 .35rem;
}

.events-footer-times {
    display: flex;
    gap: 1.4rem;
    color: rgba(228,228,228,.53);
    font: 500 8px/1.4 Inter, sans-serif;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.events-footer-times b {
    color: #c5a059;
    font-weight: 600;
}

.events-footer-signal {
    display: flex;
    align-items: end;
    justify-content: end;
    gap: 3px;
    height: 2.4rem;
}

.events-footer-signal i {
    display: block;
    width: 3px;
    background: #c5a059;
    transform-origin: bottom;
    animation: events-signal 1.6s ease-in-out infinite alternate;
}

.events-footer-signal i:nth-child(1) { height: 40%; animation-delay: -.5s; }
.events-footer-signal i:nth-child(2) { height: 68%; animation-delay: -.9s; }
.events-footer-signal i:nth-child(3) { height: 100%; animation-delay: -.2s; }

@keyframes events-signal {
    from { transform: scaleY(.55); opacity: .35; }
    to { transform: scaleY(1); opacity: 1; }
}

@keyframes events-mark-pulse {
    0%, 100% { box-shadow: 0 0 0 rgba(197,160,89,0); transform: rotate(0deg); }
    50% { box-shadow: 0 0 1.5rem rgba(197,160,89,.14); transform: rotate(14deg); }
}

.impact-section {
    background: #080808;
}

.impact-section::after {
    inset: 1.25rem;
    border-color: rgba(228,228,228,.14);
    mix-blend-mode: screen;
}

.impact-section::before {
    z-index: 1;
    background:
        repeating-linear-gradient(0deg, transparent 0 5px, rgba(255,255,255,.025) 6px, transparent 7px),
        radial-gradient(circle at 50% 50%, transparent 25%, rgba(8,8,8,.35) 100%);
    opacity: .45;
}

.community-section {
    background:
        linear-gradient(115deg, rgba(197,160,89,.06), transparent 28%),
        radial-gradient(circle at 84% 72%, rgba(197,160,89,.045), transparent 22%),
        #080808;
}

.community-section::after {
    inset: 2rem 1rem;
    border-color: rgba(197,160,89,.08);
    border-left-color: transparent;
    border-bottom-color: transparent;
}

.outro-section {
    background:
        linear-gradient(180deg, #080808 0%, #0d0b08 100%);
}

.outro-section::before {
    background:
        radial-gradient(circle at 50% 40%, rgba(197,160,89,.09), transparent 18%),
        linear-gradient(90deg, transparent 0 50%, rgba(197,160,89,.04) 50%, transparent 50.1%);
}

.outro-section::after {
    inset: 2rem;
    border-color: rgba(197,160,89,.14);
    border-left-color: transparent;
    border-right-color: transparent;
}

@media (max-width: 767px) {
    section::after {
        inset: .75rem;
    }

    .manifesto-section::after,
    .events-section::after,
    .community-section::after,
    .outro-section::after {
        inset: 1rem .75rem;
    }
}

.studio-panel {
    position: relative;
    min-width: 0;
    flex: 1 1 0;
    overflow: hidden;
    outline: none;
    cursor: none;
    transition: flex-grow 1100ms cubic-bezier(.16, 1, .3, 1), filter 1100ms ease, transform 1100ms cubic-bezier(.16, 1, .3, 1);
    filter: saturate(.7) brightness(.72);
    border-radius: 2px;
}

.studio-panel:hover,
.studio-panel:focus-visible,
.studio-panel.is-active {
    flex-grow: 2.65;
    filter: saturate(1) brightness(1);
}

.studio-panel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translate3d(var(--panel-x, 0px), var(--panel-y, 0px), 0) scale(1.1);
    transition: transform 1.8s cubic-bezier(.16, 1, .3, 1), filter 1100ms ease;
    filter: grayscale(.45);
}

.studio-panel:nth-child(2) .studio-panel-image {
    object-position: 42% center;
}

.studio-panel:hover .studio-panel-image,
.studio-panel:focus-visible .studio-panel-image,
.studio-panel.is-active .studio-panel-image {
    transform: translate3d(var(--panel-x, 0px), var(--panel-y, 0px), 0) scale(1.04);
    filter: grayscale(0);
}

.studio-panel-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.02) 8%, transparent 42%, rgba(0,0,0,.8) 100%);
    transition: background 1100ms ease;
}

.studio-panel:hover .studio-panel-shade,
.studio-panel:focus-visible .studio-panel-shade,
.studio-panel.is-active .studio-panel-shade {
    background: linear-gradient(180deg, rgba(0,0,0,.08) 10%, transparent 28%, rgba(0,0,0,.88) 100%);
}

.studio-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.1), transparent 28%);
    opacity: 0;
    transition: opacity 900ms ease;
}

.studio-panel:hover::before,
.studio-panel:focus-visible::before,
.studio-panel.is-active::before {
    opacity: .55;
}

.studio-panel-index {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    color: rgba(255,255,255,.5);
    font: 500 10px/1 Inter, sans-serif;
    letter-spacing: .25em;
}

.studio-panel-content {
    position: absolute;
    left: clamp(1.25rem, 3vw, 3rem);
    right: clamp(1.25rem, 3vw, 3rem);
    bottom: clamp(1.5rem, 4vw, 3.5rem);
    max-width: 29rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease 220ms, transform 1100ms cubic-bezier(.16, 1, .3, 1) 140ms;
}

.studio-panel:hover .studio-panel-content,
.studio-panel:focus-visible .studio-panel-content,
.studio-panel.is-active .studio-panel-content {
    opacity: 1;
    transform: translateY(0);
}

.studio-panel-kicker {
    margin: 0 0 .5rem;
    color: #C5A059;
    font: 600 10px/1 Inter, sans-serif;
    letter-spacing: .35em;
}

.studio-panel-content h3 {
    margin: 0;
    color: #E4E4E4;
    font: 400 clamp(3rem, 7vw, 7.5rem)/.82 Anton, sans-serif;
    letter-spacing: -.04em;
}

.studio-panel-description {
    max-width: 26rem;
    margin: 1.3rem 0 1.6rem;
    color: rgba(228,228,228,.74);
    font: 400 12px/1.6 Inter, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.studio-book {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: .85rem 1.2rem;
    border: 1px solid rgba(197,160,89,.6);
    color: #C5A059;
    font: 600 10px/1 Inter, sans-serif;
    letter-spacing: .22em;
    text-decoration: none;
    background: rgba(8,8,8,.2);
    transition: background 450ms ease, color 450ms ease, transform 450ms cubic-bezier(.16, 1, .3, 1);
}

.studio-book:hover {
    background: #C5A059;
    color: #080808;
    transform: translateX(4px);
}

.studio-book span {
    font-size: 16px;
    line-height: 8px;
    letter-spacing: 0;
}

.studio-panel-closed-label {
    position: absolute;
    left: 50%;
    bottom: 4.5rem;
    color: rgba(228,228,228,.85);
    font: 400 20px/1 Anton, sans-serif;
    letter-spacing: .08em;
    white-space: nowrap;
    pointer-events: none;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center;
    transition: opacity 300ms ease;
}

.studio-panel:hover .studio-panel-closed-label,
.studio-panel:focus-visible .studio-panel-closed-label,
.studio-panel.is-active .studio-panel-closed-label {
    opacity: 0;
}

@media (max-width: 767px) {
    /* Keep the image in its designed final frame on touch screens. The
       editorial motion is useful with a pointer, but the mobile composition
       should arrive already settled like the reference frame. */
    .reveal-img,
    .reveal-img[style*="opacity: 1"] {
        opacity: 1 !important;
        clip-path: inset(0) !important;
        transition: none !important;
    }

    .reveal-img img,
    .studio-panel-image,
    #impact-bg,
    .events-poster img {
        animation: none !important;
        transition: none !important;
    }

    .hero-section {
        min-height: auto !important;
        height: auto !important;
        padding: 7.5rem 0 4.5rem;
        align-items: flex-start;
    }

    .hero-section > .w-full {
        height: auto;
        min-height: 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-section > .w-full > .flex:first-child {
        display: flex;
    }

    .hero-section .hero-reveal-fast {
        top: 9rem;
        left: auto;
        right: -3rem;
        font-size: 62vw;
    }

    .hero-section .hero-reveal:first-child {
        margin-bottom: 2.75rem;
    }

    .hero-section h1 {
        margin-bottom: 2.25rem;
        font-size: clamp(2.85rem, 12vw, 4.1rem);
        line-height: .88;
        letter-spacing: -.055em;
    }

    .hero-section h1 span {
        white-space: nowrap;
    }

    .hero-section .hero-reveal p {
        padding-top: 1.25rem;
        font-size: 8px;
        letter-spacing: .28em;
    }

    .hero-section > .absolute.bottom-10 {
        position: relative;
        inset: auto;
        margin-top: 3rem;
        padding: 0 1.5rem;
        gap: 1rem;
        align-items: flex-end;
    }

    .hero-section > .absolute.bottom-10 > div:first-child {
        max-width: 12rem;
        line-height: 1.5;
        letter-spacing: .25em;
    }

    .hero-section > .absolute.bottom-10 > div:last-child {
        gap: .5rem;
        flex-direction: column;
        align-items: flex-end;
    }

    .hero-section > .absolute.bottom-10 > div:last-child .w-12 {
        width: 2rem;
    }

    .hero-section .hidden.md\:flex {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        margin: 0;
        pointer-events: none;
    }

    .hero-section .hidden.md\:flex > .reveal-img {
        position: absolute;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: auto;
        margin: 0 !important;
        border: 0;
        border-radius: 0 !important;
        clip-path: none !important;
    }

    .hero-section .hidden.md\:flex .hero-reveal {
        display: none;
    }

    .manifesto-shell {
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .manifesto-visual.hidden.md\:flex {
        display: flex !important;
        order: 2;
        min-height: 0;
        height: auto;
    }

    .manifesto-visual.hidden.md\:flex > .reveal-img {
        width: 86%;
        aspect-ratio: 4 / 5;
        min-height: 0;
        border-top-right-radius: 6rem;
    }

    .manifesto-copy {
        order: 1;
        max-width: none;
    }

    .manifesto-copy h2 {
        font-size: clamp(3.2rem, 14.8vw, 4.5rem);
        line-height: .86;
    }

    .manifesto-description {
        font-size: 9px;
        letter-spacing: .22em;
    }

    .manifesto-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .studio-heading {
        display: block;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .studio-shell::before {
        display: none;
    }

    .studio-heading-meta {
        padding-top: 0;
        margin-bottom: 1.25rem;
    }

    .studio-heading-mark {
        display: none;
    }

    .studio-heading h2 {
        margin-top: 1rem;
        text-align: left;
        font-size: 18vw;
    }

    .studio-heading h2 {
        text-align: right;
        margin-left: auto;
    }

    .studio-panels {
        height: auto;
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
        overflow: visible;
    }

    .studio-panels-wrap {
        padding: 0;
    }

    .studio-panels-topline {
        padding: .15rem 0 .65rem;
        font-size: 8px;
    }

    .studio-panels-hint {
        display: none;
    }

    .studio-panel,
    .studio-panel:hover,
    .studio-panel:focus-visible,
    .studio-panel.is-active {
        min-height: 29rem;
        flex: none;
        filter: saturate(.9) brightness(.9);
        transform: none;
    }

    .studio-section {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .studio-shell {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .studio-panel,
    .studio-panel:hover,
    .studio-panel:focus-visible,
    .studio-panel.is-active {
        min-height: 25rem;
    }

    .studio-panel-content {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1.5rem;
    }

    .studio-panel-content h3 {
        font-size: 4.5rem;
    }

    .studio-panel-description {
        margin-top: .9rem;
        margin-bottom: 1.1rem;
        font-size: 10px;
        line-height: 1.5;
    }

    .studio-panel-content,
    .studio-panel:hover .studio-panel-content,
    .studio-panel:focus-visible .studio-panel-content,
    .studio-panel.is-active .studio-panel-content {
        opacity: 1;
        transform: none;
    }

    .studio-panel-closed-label {
        display: none;
    }

    .events-section {
        min-height: auto !important;
        padding-top: 6.5rem !important;
        padding-bottom: 5.5rem !important;
    }

    .events-shell {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .events-poster {
        top: 4%;
        right: -22%;
        width: 86vw;
        height: 74%;
        opacity: .15;
        transform: rotate(4deg);
    }

    .events-heading {
        display: block;
        margin-bottom: 2rem;
        padding-bottom: 1.1rem;
    }

    .events-heading-meta {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding-top: 0;
        margin-bottom: 2rem;
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 8px;
    }

    .events-heading-rule {
        width: 2rem;
        height: 1px;
    }

    .events-kicker {
        margin-bottom: 1rem;
        font-size: 8px;
        letter-spacing: .3em;
    }

    .events-heading h2 {
        font-size: clamp(4.2rem, 19vw, 6.5rem);
        line-height: .8;
    }

    .events-heading-note {
        max-width: 15rem;
        margin-top: 1rem;
        font-size: 1.05rem;
    }

    .events-heading-mark {
        position: absolute;
        right: 0;
        bottom: 1.15rem;
        width: 2.45rem;
        height: 2.45rem;
    }

    .events-list {
        grid-template-columns: 1fr;
        gap: .45rem;
    }

    .events-card {
        grid-template-columns: 4rem minmax(0, 1fr) 1.5rem;
        min-height: 8.4rem;
        padding: 1.05rem .9rem 1.05rem 1rem;
    }

    .events-card-date strong {
        font-size: 3rem;
    }

    .events-card-main {
        padding-left: 1rem;
    }

    .events-card-type {
        margin-bottom: .55rem;
        font-size: 6px;
        letter-spacing: .2em;
    }

    .events-card-main h3 {
        font-size: clamp(2.75rem, 14vw, 4.4rem);
    }

    .events-card-main p {
        margin-top: .42rem;
        font-size: 1.1rem;
    }

    .events-footer {
        grid-template-columns: 1fr;
        gap: .8rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .events-footer-label {
        font-size: 1.25rem;
    }

    .events-footer-times {
        gap: 1rem;
        font-size: 7px;
    }

    .events-footer-signal {
        position: absolute;
        right: 1.5rem;
        margin-top: 2.75rem;
        height: 1.8rem;
    }
}

/* Quiet navigation pass: the structure stays in place, but the chrome recedes
   so the opening image and headline carry the first impression. */
.site-nav {
    padding: 1.15rem clamp(1.5rem, 4vw, 4rem);
}

.site-nav.is-scrolled {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.site-nav-inner {
    min-height: 3rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: rgba(8, 8, 8, .52);
    box-shadow: none;
    backdrop-filter: blur(18px) saturate(110%);
    -webkit-backdrop-filter: blur(18px) saturate(110%);
}

.site-nav-inner::before {
    display: none;
}

.site-nav-inner::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -.65rem;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(228,228,228,.1) 18%, rgba(228,228,228,.1) 82%, transparent);
    pointer-events: none;
}

.site-brand {
    width: auto;
    height: auto;
    justify-content: flex-start;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-brand-mark {
    width: auto;
    height: auto;
}

.site-brand img {
    height: 1.7rem;
    opacity: .9;
}

.site-brand-name {
    font-size: .95rem;
}

.site-nav-center {
    margin-right: 1.75rem;
}

.site-nav-links {
    gap: 1.65rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-nav-links a {
    padding: .55rem 0;
    color: rgba(228,228,228,.48);
    font-size: 8px;
    letter-spacing: .2em;
    border-radius: 0;
    background: transparent;
}

.site-nav-links a::before {
    display: none;
}

.site-nav-links a::after {
    right: auto;
    bottom: .1rem;
    left: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transform-origin: center;
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible,
.site-nav-links a.is-active {
    color: rgba(228,228,228,.9);
    background: transparent;
}

.site-nav-links a:hover::after,
.site-nav-links a:focus-visible::after,
.site-nav-links a.is-active::after {
    transform: translateX(-50%) scale(1);
}

.site-nav-partner {
    gap: .5rem;
    padding: .55rem 0 .55rem 1.5rem;
    border-left: 1px solid rgba(228,228,228,.14);
    color: rgba(228,228,228,.48);
    font-size: 8px;
    letter-spacing: .18em;
}

.site-nav-partner:hover,
.site-nav-partner:focus-visible {
    color: rgba(228,228,228,.9);
    background: transparent;
}

.site-nav-dot {
    width: 3px;
    height: 3px;
    background: rgba(197,160,89,.75);
    box-shadow: none;
}

.site-nav-arrow {
    color: rgba(197,160,89,.72);
}

@media (max-width: 767px) {
    .site-nav {
        padding: .9rem 1.1rem;
    }

    .site-nav-inner {
        min-height: 2.6rem;
        padding: 0;
        background: rgba(8, 8, 8, .42);
    }

    .site-nav-inner::after {
        bottom: -.5rem;
    }

    .site-brand img {
        height: 1.55rem;
    }

    .site-brand-name {
        font-size: .78rem;
    }

    .site-nav-toggle {
        width: 2.35rem;
        height: 2.35rem;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: rgba(228,228,228,.7);
    }

    .site-nav-toggle span,
    .site-nav-toggle span:last-child {
        width: 1rem;
        margin-left: 0;
    }

    .site-nav.is-menu-open .site-nav-center {
        top: calc(100% + .75rem);
        right: 0;
        left: auto;
        width: min(15rem, calc(100vw - 2.2rem));
        padding: .5rem 1rem .7rem;
        border: 1px solid rgba(228,228,228,.12);
        border-radius: .8rem;
        background: rgba(14,14,14,.9);
        box-shadow: 0 1rem 2.5rem rgba(0,0,0,.2);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .site-nav.is-menu-open .site-nav-links {
        gap: .1rem;
        padding: 0;
    }

    .site-nav.is-menu-open .site-nav-links a {
        padding: .8rem .2rem;
    }

    .site-nav.is-menu-open .site-nav-links a::after {
        right: auto;
        bottom: 50%;
        left: -.55rem;
        transform: translateY(50%) scale(0);
    }

    .site-nav.is-menu-open .site-nav-links a:hover::after,
    .site-nav.is-menu-open .site-nav-links a:focus-visible::after,
    .site-nav.is-menu-open .site-nav-links a.is-active::after {
        transform: translateY(50%) scale(1);
    }
}

/* The brand is deliberately quieter than the navigation: a small monogram
   anchors the lockup while the typography carries the studio name. */
.site-brand {
    gap: .75rem;
    min-width: max-content;
    align-items: center;
}

.site-brand-mark {
    position: relative;
    display: grid;
    flex: 0 0 2.3rem;
    width: 2.3rem;
    height: 2.3rem;
    place-items: center;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(197,160,89,.3);
    border-radius: .55rem;
    background: rgba(197,160,89,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 0 .9rem rgba(197,160,89,.06);
}

.site-brand-mark::after {
    content: "";
    position: absolute;
    inset: .25rem;
    border: 1px solid rgba(197,160,89,.16);
    border-radius: .3rem;
    pointer-events: none;
}

.site-brand-mark img {
    width: 3.7rem;
    height: 3.7rem;
    max-width: none;
    object-fit: contain;
    opacity: .96;
    transform: scale(1.12);
    transition: transform .6s cubic-bezier(.16,1,.3,1), opacity .35s ease;
}

.site-brand:hover .site-brand-mark img,
.site-brand:focus-visible .site-brand-mark img {
    opacity: 1;
    transform: scale(1.22);
}

.site-brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 6.45rem;
    gap: .22rem;
}

.site-brand-name {
    position: relative;
    display: inline-block;
    min-width: 5.8rem;
    color: rgba(228,228,228,.92);
    font-family: Inter, sans-serif;
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .255em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    font-variant-ligatures: none;
}

.site-brand-subtitle {
    color: rgba(197,160,89,.72);
    font-family: Inter, sans-serif;
    font-size: .43rem;
    font-weight: 400;
    letter-spacing: .32em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-brand-name.brand-is-glitching {
    animation: brand-word-glitch .58s steps(2, end) both;
}

.site-brand-name.brand-is-glitching::before {
    content: attr(data-glitch-word);
    position: absolute;
    inset: 0;
    color: var(--nav-gold);
    opacity: .72;
    pointer-events: none;
    clip-path: inset(0 0 58% 0);
    transform: translate(2px, -1px);
    animation: brand-word-slice .58s steps(2, end) both;
}

@keyframes brand-word-glitch {
    0%, 100% { transform: translate3d(0, 0, 0); text-shadow: none; }
    16% { transform: translate3d(-1px, 0, 0); text-shadow: 2px 0 rgba(197,160,89,.55); }
    32% { transform: translate3d(2px, 0, 0); text-shadow: -2px 0 rgba(228,228,228,.34); }
    50% { transform: translate3d(-1px, 1px, 0); text-shadow: 1px 0 rgba(197,160,89,.42); }
    72% { transform: translate3d(1px, 0, 0); text-shadow: -1px 0 rgba(228,228,228,.28); }
}

@keyframes brand-word-slice {
    0%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    24% { clip-path: inset(8% 0 58% 0); transform: translate(3px, -1px); }
    48% { clip-path: inset(62% 0 14% 0); transform: translate(-2px, 1px); }
    70% { clip-path: inset(35% 0 38% 0); transform: translate(2px, 0); }
}

@media (max-width: 767px) {
    .site-brand {
        gap: .58rem;
    }

    .site-brand-mark {
        flex-basis: 1.9rem;
        width: 1.9rem;
        height: 1.9rem;
        border-radius: .45rem;
    }

    .site-brand-mark::after {
        inset: .2rem;
        border-radius: .22rem;
    }

    .site-brand-mark img {
        width: 3.1rem;
        height: 3.1rem;
    }

    .site-brand-copy {
        min-width: 5.35rem;
        gap: .18rem;
    }

    .site-brand-name {
        min-width: 4.8rem;
        font-size: .6rem;
        letter-spacing: .22em;
    }

    .site-brand-subtitle {
        font-size: .36rem;
        letter-spacing: .25em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-brand-mark img,
    .site-brand-name.brand-is-glitching {
        animation: none !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 520px) {
    .hero-signal {
        width: 100%;
    }

    .hero-signal-copy {
        font-size: 8px;
        letter-spacing: .16em;
    }

    .hero-signal-copy span {
        margin: 0 .22rem;
    }
}

/* Custom Selection */
::selection {
    background: #C5A059;
    color: #080808;
}

/* Hide Scrollbar */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Keep the header on the picture instead of over it. The hero's own frame
   should be the strongest geometry at the top of the page. */
.site-nav {
    padding: .55rem clamp(1.15rem, 3vw, 3rem);
}

.site-nav-inner {
    min-height: 2.45rem;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-nav-inner::after {
    display: none;
}

.site-brand {
    gap: .55rem;
}

.site-brand-mark {
    flex-basis: 2rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-brand-mark::after {
    display: none;
}

.site-brand-mark img {
    width: 3.15rem;
    height: 3.15rem;
    transform: scale(1.08);
}

.site-brand:hover .site-brand-mark img,
.site-brand:focus-visible .site-brand-mark img {
    transform: scale(1.17);
}

.site-brand-copy {
    min-width: 5.75rem;
    gap: .16rem;
}

.site-brand-name {
    min-width: 5.15rem;
    font-size: .64rem;
    letter-spacing: .23em;
}

.site-brand-subtitle {
    font-size: .36rem;
    letter-spacing: .27em;
}

.site-nav-center {
    margin-right: 1.15rem;
}

.site-nav-links {
    gap: 1.15rem;
}

.site-nav-links a {
    padding: .4rem 0;
    font-size: 7px;
    letter-spacing: .18em;
}

.site-nav-partner {
    padding-top: .4rem;
    padding-bottom: .4rem;
    padding-left: 1rem;
    font-size: 7px;
}

@media (max-width: 767px) {
    .site-nav {
        padding: .55rem .8rem;
    }

    .site-nav-inner {
        min-height: 2.2rem;
    }

    .site-brand {
        gap: .42rem;
    }

    .site-brand-mark {
        flex-basis: 1.65rem;
        width: 1.65rem;
        height: 1.65rem;
    }

    .site-brand-mark img {
        width: 2.7rem;
        height: 2.7rem;
    }

    .site-brand-copy {
        min-width: 4.8rem;
    }

    .site-brand-name {
        min-width: 4.35rem;
        font-size: .53rem;
        letter-spacing: .2em;
    }

    .site-brand-subtitle {
        font-size: .31rem;
        letter-spacing: .22em;
    }

    .site-nav-toggle {
        width: 2rem;
        height: 2rem;
    }
}

/* Center the navigation as a measured piece of the hero composition. The
   logo and portal stay on the outer thirds, while the links sit on the true
   page center rather than being centered between uneven side controls. */
.site-nav {
    padding: .8rem clamp(1.15rem, 3vw, 3rem);
}

.site-nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    min-height: 3.55rem;
}

.site-brand {
    justify-self: start;
}

.site-nav-center {
    justify-self: center;
    margin: 0;
}

.site-nav-links {
    gap: .1rem;
    padding: .28rem;
    border: 1px solid rgba(228,228,228,.12);
    border-radius: .85rem;
    background: rgba(8,8,8,.38);
    box-shadow: inset 0 1px rgba(255,255,255,.06), 0 .8rem 2rem rgba(0,0,0,.12);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.site-nav-links a {
    padding: .65rem .85rem;
    border-radius: .55rem;
    font-size: 8px;
    letter-spacing: .18em;
}

.site-nav-partner {
    justify-self: end;
    padding-top: .55rem;
    padding-bottom: .55rem;
}

@media (max-width: 767px) {
    .site-nav {
        padding: .62rem .8rem;
    }

    .site-nav-inner {
        grid-template-columns: 1fr auto;
        min-height: 2.65rem;
    }

    .site-nav-links {
        padding: .2rem;
    }
}

/* Inspiration-led header: a clean LFC lockup, open navigation in the center,
   and a clear booking action at the far edge. */
.site-nav {
    padding: 1rem clamp(1.5rem, 4vw, 4rem);
}

.site-nav-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    min-height: 3.25rem;
}

.site-brand {
    gap: .68rem;
}

.site-brand-mark {
    flex-basis: 2.2rem;
    width: 2.2rem;
    height: 2.2rem;
}

.site-brand-mark img {
    width: 3.45rem;
    height: 3.45rem;
}

.site-brand-copy {
    min-width: 0;
    flex-direction: row;
    align-items: baseline;
    gap: .38rem;
}

.site-brand-name {
    min-width: 0;
    color: rgba(228,228,228,.94);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .16em;
}

.site-brand-subtitle {
    color: rgba(228,228,228,.62);
    font-size: .6rem;
    letter-spacing: .2em;
}

.site-nav-links {
    gap: 1.6rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-nav-links a {
    padding: .5rem 0;
    border-radius: 0;
    color: rgba(228,228,228,.62);
    font-size: 8px;
    letter-spacing: .2em;
}

.site-nav-links a + a::before {
    content: "•";
    position: absolute;
    top: 50%;
    left: -1rem;
    color: rgba(197,160,89,.8);
    font-size: 8px;
    transform: translateY(-50%);
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible,
.site-nav-links a.is-active {
    color: rgba(228,228,228,.96);
}

.site-nav-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 1.15rem;
}

.site-nav-partner {
    gap: .45rem;
    padding: .5rem 0;
    border-left: 0;
    color: rgba(228,228,228,.62);
    font-size: 8px;
    letter-spacing: .16em;
}

.site-nav-partner:hover,
.site-nav-partner:focus-visible {
    color: rgba(228,228,228,.96);
}

.site-nav-booking {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .82rem 1.1rem;
    border: 1px solid rgba(197,160,89,.78);
    color: rgba(197,160,89,.96);
    font: 500 8px/1 Inter, sans-serif;
    letter-spacing: .19em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s ease;
}

.site-nav-booking:hover,
.site-nav-booking:focus-visible {
    border-color: #d7b56d;
    background: rgba(197,160,89,.14);
    color: #f0d18d;
    transform: translateY(-1px);
}

.site-nav-booking .site-nav-arrow {
    color: rgba(228,228,228,.8);
    font-size: 11px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 2rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    padding: .95rem 1.15rem;
    border: 1px solid transparent;
    font: 500 8px/1 Inter, sans-serif;
    letter-spacing: .2em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
    transform: translateY(-2px);
}

.hero-cta-primary {
    border-color: rgba(197,160,89,.9);
    background: #c5a059;
    color: #080808;
}

.hero-cta-primary:hover,
.hero-cta-primary:focus-visible {
    border-color: #e4c37c;
    background: #e4c37c;
}

.hero-cta-secondary {
    border-color: rgba(228,228,228,.22);
    color: rgba(228,228,228,.76);
}

.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible {
    border-color: rgba(197,160,89,.55);
    color: #e4c37c;
}

@media (max-width: 767px) {
    .site-nav {
        padding: .72rem .85rem;
    }

    .site-nav-inner {
        grid-template-columns: 1fr auto;
        min-height: 2.75rem;
    }

    .site-brand {
        gap: .46rem;
    }

    .site-brand-mark {
        flex-basis: 1.75rem;
        width: 1.75rem;
        height: 1.75rem;
    }

    .site-brand-mark img {
        width: 2.85rem;
        height: 2.85rem;
    }

    .site-brand-copy {
        gap: .27rem;
    }

    .site-brand-name {
        font-size: .62rem;
        letter-spacing: .13em;
    }

    .site-brand-subtitle {
        font-size: .42rem;
        letter-spacing: .14em;
    }

    .site-nav-actions {
        display: none;
    }

    .hero-actions {
        flex-wrap: wrap;
        margin-top: 1.5rem;
    }

    .hero-cta {
        padding: .85rem .9rem;
        font-size: 7px;
    }
}

/* Final hero composition: the image sits just below the header's visual
   line, with enough breathing room to feel related to it without becoming a
   second navigation surface. */
.hero-visual {
    padding-top: 0;
}

.hero-visual > .reveal-img {
    width: 82%;
    aspect-ratio: 3.8 / 5;
    border-top-left-radius: 13vw;
}

#hero-img {
    transform: scale(1.08) !important;
}

.hero-culture-note {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: min(100%, 31rem);
    gap: .5rem;
    margin-top: 1.45rem;
    padding-top: .7rem;
    border-top: 1px solid rgba(228,228,228,.12);
    color: rgba(228,228,228,.45);
    font: 400 8px/1 Inter, sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-culture-label {
    margin-right: .35rem;
    color: rgba(197,160,89,.8);
    font-size: 7px;
    letter-spacing: .2em;
}

.hero-culture-word {
    color: rgba(228,228,228,.55);
}

.hero-culture-divider {
    color: rgba(197,160,89,.6);
}

.hero-actions {
    gap: .7rem;
    margin-top: 1.65rem;
}

.hero-cta {
    position: relative;
    min-width: 10rem;
    justify-content: space-between;
    overflow: hidden;
    isolation: isolate;
    padding: .82rem .82rem .82rem 1rem;
    border-radius: .12rem;
    background: rgba(8,8,8,.28);
}

.hero-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}

.hero-cta::after {
    content: "";
    position: absolute;
    top: -1px;
    left: .9rem;
    width: 1.4rem;
    height: 1px;
    background: currentColor;
    opacity: .8;
}

.hero-cta > span {
    position: relative;
    z-index: 1;
}

.hero-cta > span:last-child {
    display: grid;
    width: 1.35rem;
    height: 1.35rem;
    flex: 0 0 1.35rem;
    place-items: center;
    border: 1px solid currentColor;
    font-size: 10px;
    transition: color .45s ease, background .45s ease, transform .45s cubic-bezier(.16,1,.3,1);
}

.hero-cta:hover::before,
.hero-cta:focus-visible::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-cta:hover > span:last-child,
.hero-cta:focus-visible > span:last-child {
    background: currentColor;
    color: #080808;
    transform: translate(2px, -2px);
}

.hero-cta-primary {
    border-color: rgba(197,160,89,.84);
    background: rgba(197,160,89,.04);
    color: #d5b36a;
}

.hero-cta-primary::before {
    background: #c5a059;
}

.hero-cta-primary:hover,
.hero-cta-primary:focus-visible {
    border-color: #e4c37c;
    background: rgba(197,160,89,.04);
    color: #080808;
}

.hero-cta-secondary {
    border-color: rgba(228,228,228,.2);
    color: rgba(228,228,228,.78);
}

.hero-cta-secondary::before {
    background: rgba(197,160,89,.13);
}

.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible {
    border-color: rgba(197,160,89,.6);
    color: #e4c37c;
}

@media (max-width: 767px) {
    .hero-culture-note {
        gap: .42rem;
        margin-top: 1.2rem;
        padding-top: .6rem;
        font-size: 7px;
        letter-spacing: .14em;
    }

    .hero-culture-label {
        width: 100%;
        margin-right: 0;
        margin-bottom: .1rem;
    }

    .hero-cta {
        min-width: 9.5rem;
        padding: .76rem .72rem .76rem .84rem;
    }
}

/* Clean reference lockup: the logo image carries its own typography, so it
   stays crisp and consistent instead of mixing an unrelated text treatment
   beside the mark. */
.site-brand {
    width: auto;
    height: auto;
    min-width: 0;
    gap: 0;
}

.site-brand-image {
    display: block;
    width: auto !important;
    height: 3.2rem !important;
    max-width: none;
    object-fit: contain;
    mix-blend-mode: screen;
    opacity: .96;
    transition: opacity .35s ease, transform .6s cubic-bezier(.16,1,.3,1);
}

.site-brand:hover .site-brand-image,
.site-brand:focus-visible .site-brand-image {
    opacity: 1;
    transform: translateY(-1px);
}

.site-nav-actions {
    display: none;
}

/* Restore the taller image frame that balances the original hero and the
   header's top line. */
.hero-visual > .reveal-img {
    width: 85%;
    aspect-ratio: 3 / 4;
    border-top-left-radius: 15vw;
}

#hero-img {
    transform: scale(1) !important;
}

/* Reference CTA system: one confident gold block and one quieter editorial
   link with a single gold rule. */
.hero-cta {
    min-width: 0;
    gap: 2.25rem;
    padding: 1.05rem 1.3rem;
    border-radius: 0;
    background: transparent;
    font-size: 9px;
    letter-spacing: .2em;
}

.hero-cta::before {
    display: none;
}

.hero-cta::after {
    top: auto;
    right: 0;
    bottom: -1px;
    left: 0;
    width: auto;
    height: 2px;
    background: #c5a059;
    opacity: 1;
    transform: scaleX(1);
}

.hero-cta > span:last-child {
    width: auto;
    height: auto;
    flex: 0 0 auto;
    border: 0;
    font-size: 1.25rem;
    line-height: .7;
}

.hero-cta-primary {
    min-width: 15rem;
    border-color: #c5a059;
    background: #c5a059;
    color: #080808;
}

.hero-cta-primary::after {
    display: none;
}

.hero-cta-primary:hover,
.hero-cta-primary:focus-visible {
    border-color: #e3bd6b;
    background: #e3bd6b;
    color: #080808;
}

.hero-cta-secondary {
    min-width: 10.5rem;
    padding-right: 0;
    padding-left: 0;
    border: 0;
    color: rgba(228,228,228,.86);
}

.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible {
    border-color: transparent;
    background: transparent;
    color: #e3bd6b;
}

.hero-cta-secondary > span:last-child {
    color: #c5a059;
}

@media (max-width: 767px) {
    .site-brand-image {
        width: auto !important;
        height: 2.55rem !important;
    }

    .hero-cta {
        gap: 1.5rem;
        padding: .9rem 1rem;
        font-size: 8px;
    }

    .hero-cta-primary {
        min-width: 13rem;
    }

    .hero-cta-secondary {
        min-width: 10rem;
    }
}

/* Eleusis lockup: a small, framed gold mark paired with a quiet typographic
   signature. The frame gives the supplied geometry enough contrast to read
   cleanly against the black hero. */
.site-brand {
    gap: .72rem;
    align-items: center;
}

.site-brand-mark {
    position: relative;
    display: grid;
    flex: 0 0 2.4rem;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(197,160,89,.68);
    border-radius: .62rem;
    background:
        linear-gradient(135deg, rgba(197,160,89,.16), transparent 45%),
        rgba(8,8,8,.82);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.04),
        0 0 1.5rem rgba(197,160,89,.08);
}

.site-brand-mark::before,
.site-brand-mark::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.site-brand-mark::before {
    inset: .22rem;
    border: 1px solid rgba(197,160,89,.2);
    border-radius: .38rem;
}

.site-brand-mark::after {
    right: .35rem;
    bottom: .35rem;
    width: .3rem;
    height: .3rem;
    border-right: 1px solid rgba(197,160,89,.75);
    border-bottom: 1px solid rgba(197,160,89,.75);
}

.site-brand-mark img {
    width: 3.8rem;
    height: 3.8rem;
    max-width: none;
    object-fit: contain;
    opacity: .98;
    transform: scale(1.12);
    transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}

.site-brand:hover .site-brand-mark img,
.site-brand:focus-visible .site-brand-mark img {
    opacity: 1;
    transform: scale(1.2);
}

.site-brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: .22rem;
}

.site-brand-name {
    min-width: 5.8rem;
    color: rgba(228,228,228,.94);
    font-family: Inter, sans-serif;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .24em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-brand-subtitle {
    color: rgba(197,160,89,.78);
    font-family: Inter, sans-serif;
    font-size: .42rem;
    font-weight: 400;
    letter-spacing: .31em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Softer, more welcoming CTA controls: rounded surfaces, restrained
   contrast, and a small circular directional cue. */
.hero-actions {
    gap: .75rem;
}

.hero-cta {
    min-width: 0;
    gap: 1rem;
    padding: .7rem .72rem .7rem 1.05rem;
    border-radius: 999px;
    font-size: 8px;
    letter-spacing: .16em;
    box-shadow: 0 .7rem 1.8rem rgba(0,0,0,.12);
}

.hero-cta::before,
.hero-cta::after {
    display: none;
}

.hero-cta > span:last-child {
    display: grid;
    width: 1.7rem;
    height: 1.7rem;
    flex: 0 0 1.7rem;
    place-items: center;
    border: 0;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    transition: color .35s ease, background .35s ease, transform .45s cubic-bezier(.16,1,.3,1);
}

.hero-cta-primary {
    min-width: 12.8rem;
    border: 1px solid #c5a059;
    background: #c5a059;
    color: #080808;
}

.hero-cta-primary > span:last-child {
    background: rgba(8,8,8,.14);
    color: #080808;
}

.hero-cta-primary:hover,
.hero-cta-primary:focus-visible {
    border-color: #e5c67c;
    background: #e5c67c;
    color: #080808;
    box-shadow: 0 1rem 2.4rem rgba(197,160,89,.18);
}

.hero-cta-primary:hover > span:last-child,
.hero-cta-primary:focus-visible > span:last-child {
    background: rgba(8,8,8,.2);
    color: #080808;
}

.hero-cta-secondary {
    min-width: 11rem;
    border: 1px solid rgba(228,228,228,.18);
    background: rgba(228,228,228,.045);
    color: rgba(228,228,228,.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-cta-secondary > span:last-child {
    background: rgba(197,160,89,.14);
    color: #d5b36a;
}

.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible {
    border-color: rgba(197,160,89,.58);
    background: rgba(197,160,89,.1);
    color: #f0d18d;
    box-shadow: 0 1rem 2.4rem rgba(197,160,89,.1);
}

.hero-cta-secondary:hover > span:last-child,
.hero-cta-secondary:focus-visible > span:last-child {
    background: #c5a059;
    color: #080808;
}

@media (max-width: 767px) {
    .site-brand {
        gap: .5rem;
    }

    .site-brand-mark {
        flex-basis: 1.95rem;
        width: 1.95rem;
        height: 1.95rem;
        border-radius: .5rem;
    }

    .site-brand-mark::before {
        inset: .18rem;
        border-radius: .3rem;
    }

    .site-brand-mark img {
        width: 3.1rem;
        height: 3.1rem;
    }

    .site-brand-copy {
        gap: .17rem;
    }

    .site-brand-name {
        min-width: 4.7rem;
        font-size: .59rem;
        letter-spacing: .19em;
    }

    .site-brand-subtitle {
        font-size: .34rem;
        letter-spacing: .24em;
    }

    .hero-cta {
        padding: .62rem .6rem .62rem .82rem;
        font-size: 7px;
    }

    .hero-cta-primary {
        min-width: 11.7rem;
    }

    .hero-cta-secondary {
        min-width: 10rem;
    }
}

/* A quiet invitation to move through the work. It fades as soon as the
   visitor starts scrolling, so it never becomes permanent chrome. */
body {
    overscroll-behavior-y: none;
}

#smooth-wrapper {
    touch-action: pan-y;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(228,228,228,.48);
    font: 500 7px/1 Inter, sans-serif;
    letter-spacing: .25em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
    transition: opacity .5s ease, color .35s ease;
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus-visible {
    color: #d5b36a;
}

.hero-scroll-cue.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-scroll-cue-line {
    position: relative;
    display: block;
    width: 2rem;
    height: 1px;
    overflow: hidden;
    background: rgba(197,160,89,.25);
}

.hero-scroll-cue-line i {
    position: absolute;
    top: 0;
    left: -35%;
    display: block;
    width: 35%;
    height: 1px;
    background: #c5a059;
    animation: scroll-cue-travel 2.2s cubic-bezier(.7,0,.3,1) infinite;
}

@keyframes scroll-cue-travel {
    0% { transform: translateX(0); opacity: 0; }
    18% { opacity: 1; }
    78% { opacity: 1; }
    100% { transform: translateX(390%); opacity: 0; }
}

.events-learn-more {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    margin-top: .85rem;
    padding: .72rem 0 .72rem .05rem;
    border-bottom: 1px solid rgba(197,160,89,.55);
    color: rgba(228,228,228,.76);
    font: 500 8px/1 Inter, sans-serif;
    letter-spacing: .22em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .35s ease, border-color .35s ease, gap .45s cubic-bezier(.16,1,.3,1);
}

.events-learn-more span:last-child {
    color: #c5a059;
    font-size: 1.1rem;
    line-height: .7;
    transition: transform .45s cubic-bezier(.16,1,.3,1);
}

.events-learn-more:hover,
.events-learn-more:focus-visible {
    gap: 1.05rem;
    border-color: #d7b56d;
    color: #f0d18d;
}

.events-learn-more:hover span:last-child,
.events-learn-more:focus-visible span:last-child {
    transform: translateX(3px);
}

/* Give the centered nav enough hit area and presence to belong to the
   oversized editorial typography below it. */
.site-nav-links {
    gap: 1.8rem;
}

.site-nav-links a {
    min-height: 2.75rem;
    padding: .82rem .08rem;
    font-size: 10px;
    letter-spacing: .18em;
}

@media (max-width: 767px) {
    .hero-scroll-cue {
        position: relative;
        bottom: auto;
        left: auto;
        width: max-content;
        margin: 2.2rem auto 0;
        transform: none;
    }

    .site-nav-links {
        gap: .15rem;
    }

    .site-nav.is-menu-open .site-nav-links a {
        min-height: 0;
        padding: .88rem .2rem;
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll-cue-line i {
        animation: none;
    }
}

/* Full transparent LFC lockup. Its wide geometry works as one mark and
   stays sharper than mixing a separate icon with a second type treatment. */
.site-brand {
    gap: 0;
}

.site-brand-logo {
    display: block;
    width: 12.25rem !important;
    height: auto !important;
    max-width: none;
    object-fit: contain;
    opacity: .96;
    transition: opacity .35s ease, transform .6s cubic-bezier(.16,1,.3,1);
}

.site-brand:hover .site-brand-logo,
.site-brand:focus-visible .site-brand-logo {
    opacity: 1;
    transform: translateY(-1px);
}

/* Section atmospheres: slow, low-contrast movement keeps the page alive
   while preserving the black / off-white / warm-gold palette. */
section::before {
    will-change: transform, opacity, background-position;
}

.hero-section::before {
    animation: hero-atmosphere 18s ease-in-out infinite alternate;
}

/*
   Mobile opening frame
   --------------------
   The building is the hero on small screens. The desktop split layout stays
   untouched; on touch screens the image becomes a full-bleed canvas and the
   copy sits in a readable, cinematic gradient at the bottom.
*/
@media (max-width: 767px) {
    .hero-section {
        position: relative;
        height: 100svh !important;
        min-height: 100svh !important;
        padding: 0 !important;
        display: flex;
        align-items: stretch;
        background: #080808;
        isolation: isolate;
        overflow: hidden;
    }

    .hero-section::before {
        z-index: 1;
        background:
            linear-gradient(180deg, rgba(8,8,8,.45) 0%, rgba(8,8,8,.06) 30%, rgba(8,8,8,.75) 65%, #080808 100%),
            linear-gradient(90deg, rgba(8,8,8,.3) 0%, transparent 40%, transparent 60%, rgba(8,8,8,.3) 100%);
        animation: none;
    }

    .hero-section::after {
        inset: .75rem;
        z-index: 4;
        border: 1px solid rgba(197,160,89,.3);
        border-left-color: rgba(197,160,89,.2);
        border-bottom-color: rgba(197,160,89,.2);
        border-radius: .35rem;
        opacity: .85;
        pointer-events: none;
    }

    .hero-section > .w-full {
        position: relative;
        z-index: 3;
        display: flex;
        width: 100%;
        height: 100%;
        min-height: 0;
        max-width: none;
        padding: 5.25rem 1.65rem 2.5rem;
        flex-direction: column;
        justify-content: flex-end;
    }

    .hero-section > .w-full > .flex:first-child {
        position: relative;
        z-index: 3;
        display: flex;
        width: 100%;
        height: auto;
        min-height: 0;
        justify-content: flex-end;
    }

    .hero-section > .w-full > .flex:first-child > div:first-child {
        display: flex;
        width: 100%;
        min-height: 0;
        flex-direction: column;
        justify-content: flex-end;
        padding: 0 !important;
    }

    .hero-section .hero-reveal-fast {
        top: 6.5rem;
        right: -.5rem;
        left: auto;
        z-index: 0;
        color: rgba(255,255,255,.05);
        font-size: 48vw;
        opacity: .4 !important;
    }

    .hero-section h1 {
        position: relative;
        z-index: 2;
        max-width: 100%;
        margin: 0 0 .85rem;
        font-size: clamp(2.35rem, 9.8vw, 3.25rem);
        line-height: .92;
        letter-spacing: -.055em;
        text-shadow: 0 .25rem 1.5rem rgba(0,0,0,.5);
    }

    .hero-section h1 span {
        white-space: normal;
    }

    .hero-section .hero-reveal p {
        position: relative;
        z-index: 2;
        width: auto;
        max-width: 100%;
        margin: 0 0 1.25rem;
        padding: .75rem 0 0;
        border-top: 1px solid rgba(197,160,89,.4);
        color: rgba(228,228,228,.7);
        font-size: 8px;
        letter-spacing: .25em;
        line-height: 1.4;
    }

    .hero-actions {
        position: relative;
        z-index: 20 !important;
        pointer-events: auto !important;
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: .65rem;
        width: 100%;
        margin-top: 0;
    }

    .hero-cta,
    .hero-cta-primary,
    .hero-cta-secondary {
        position: relative;
        z-index: 20 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(197, 160, 89, 0.3);
        min-width: 0;
        width: 100%;
        gap: .5rem;
        padding: .85rem .75rem;
        font-size: 8px;
        letter-spacing: .15em;
        border-radius: 9999px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.35);
    }

    .hero-cta > span:last-child {
        width: auto;
        height: auto;
        flex-basis: auto;
        font-size: .85rem;
    }

    .hero-cta-primary {
        background: #C5A059;
        color: #080808;
        border: 1px solid #C5A059;
        font-weight: 700;
    }

    .hero-cta-primary span {
        color: #080808;
    }

    .hero-cta-secondary {
        background: rgba(12,12,12,.7);
        border: 1px solid rgba(197,160,89,.45);
        color: #E4E4E4;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        font-weight: 600;
    }

    .hero-cta-secondary span {
        color: #E4E4E4;
    }

    .hero-culture-note {
        display: none;
    }

    .hero-culture-label {
        width: auto;
        margin: 0 .2rem 0 0;
        color: #d4ae63;
        font-size: 6px;
        letter-spacing: .18em;
    }

    .hero-culture-word {
        color: rgba(228,228,228,.72);
    }

    .hero-culture-divider {
        color: rgba(197,160,89,.78);
    }

    .hero-section .hero-visual {
        position: absolute;
        inset: 0;
        z-index: 0;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0;
        margin: 0 !important;
        pointer-events: none;
    }

    .hero-section .hero-visual > .reveal-img {
        position: absolute;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: auto !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        opacity: 1 !important;
        clip-path: none !important;
        box-shadow: none;
    }

    .hero-section .hero-visual > .reveal-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(8,8,8,.35) 0%, rgba(8,8,8,.05) 30%, rgba(8,8,8,.65) 68%, #080808 100%),
            linear-gradient(90deg, rgba(8,8,8,.35) 0%, transparent 35%, transparent 65%, rgba(8,8,8,.35) 100%);
        pointer-events: none;
    }

    .hero-section .hero-visual > .reveal-img > div:first-of-type {
        display: none !important;
    }

    .hero-section #hero-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 25% !important;
        filter: saturate(.82) contrast(1.06) brightness(.82);
        transform: scale(1) !important;
    }

    .hero-section .hero-visual .hero-reveal {
        display: none;
    }

    .hero-section > .absolute.bottom-10 {
        position: absolute;
        top: 4.85rem;
        right: 1.65rem;
        bottom: auto;
        left: auto;
        z-index: 4;
        width: auto;
        margin: 0;
        padding: 0;
        opacity: 1 !important;
        pointer-events: none !important;
    }

    .hero-section > .absolute.bottom-10 > div:first-child {
        max-width: none;
        color: rgba(197,160,89,.75);
        font-size: 7px;
        letter-spacing: .25em;
        line-height: 1;
        white-space: nowrap;
        font-weight: 500;
    }

    .hero-section > .absolute.bottom-10 > div:last-child {
        display: none;
    }

    .hero-scroll-cue {
        display: none !important;
    }

    .hero-section > .absolute.left-\[5\%\] {
        display: none;
    }
}

.manifesto-section::before {
    animation: manifesto-atmosphere 22s ease-in-out infinite alternate;
}

.studio-section::before {
    animation: studio-atmosphere 16s ease-in-out infinite alternate;
}

.events-section::before {
    animation: events-atmosphere 25s ease-in-out infinite alternate;
}

.impact-section::before {
    animation: impact-atmosphere 20s ease-in-out infinite alternate;
}

.community-section::before {
    animation: community-atmosphere 24s ease-in-out infinite alternate;
}

.outro-section::before {
    animation: outro-atmosphere 18s ease-in-out infinite alternate;
}

@keyframes hero-atmosphere {
    from { background-position: 0 0, 0 0; opacity: .78; }
    to { background-position: 1.5rem .8rem, -1rem 1.2rem; opacity: 1; }
}

@keyframes manifesto-atmosphere {
    from { transform: translate3d(-1%, 0, 0) scale(1); opacity: .72; }
    to { transform: translate3d(1.5%, -1%, 0) scale(1.03); opacity: 1; }
}

@keyframes studio-atmosphere {
    from { transform: translate3d(-1%, 0, 0); opacity: .68; }
    to { transform: translate3d(1%, -1.5%, 0); opacity: 1; }
}

@keyframes events-atmosphere {
    from { transform: translate3d(0, 0, 0); opacity: .62; }
    to { transform: translate3d(-1.2%, 1%, 0); opacity: .92; }
}

@keyframes impact-atmosphere {
    from { transform: scale(1); opacity: .36; }
    to { transform: scale(1.025); opacity: .52; }
}

@keyframes community-atmosphere {
    from { transform: translate3d(1%, 0, 0); opacity: .68; }
    to { transform: translate3d(-1%, -1%, 0); opacity: 1; }
}

@keyframes outro-atmosphere {
    from { transform: translate3d(0, 0, 0); opacity: .68; }
    to { transform: translate3d(0, -1.5%, 0); opacity: 1; }
}

@media (max-width: 767px) {
    .site-brand-logo {
        width: 9.25rem !important;
        height: auto !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    section::before {
        animation: none !important;
    }
}

/* A discreet chapter marker makes the long scroll feel intentional. It
   shares the page's existing edge geometry and stays out of the content. */
.story-progress {
    position: fixed;
    top: 50%;
    right: 1.35rem;
    z-index: 35;
    display: flex;
    align-items: center;
    gap: .65rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(.4rem);
    transition: opacity .6s ease, transform .7s cubic-bezier(.16,1,.3,1);
}

.story-progress.is-visible {
    opacity: .72;
    transform: translateY(-50%) translateX(0);
}

.story-progress-count {
    color: rgba(197,160,89,.82);
    font: 500 7px/1 Inter, sans-serif;
    letter-spacing: .18em;
    writing-mode: vertical-rl;
}

.story-progress-track {
    position: relative;
    display: block;
    width: 1px;
    height: 5.5rem;
    overflow: hidden;
    background: rgba(228,228,228,.18);
}

.story-progress-track i {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 1px;
    height: 100%;
    background: #c5a059;
    transform: scaleY(.08);
    transform-origin: top;
    transition: transform .25s ease-out;
}

@media (max-width: 767px) {
    .story-progress {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .story-progress,
    .story-progress-track i {
        transition: none;
    }
}
