:root {
    --ichiki-bg: #ededed;
    --ichiki-text: #101016;
    --ichiki-border: #565656;
    --ichiki-muted: #6f6f72;
    --ichiki-white: #ffffff;
    --surface: #fdfdfb;
    --surface-muted: #e4e4e4;
    --artist-green: #d5dfda;
    --artist-blue: #d7e4ec;
    --outside: 12px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --fluid: cubic-bezier(0.22, 1.24, 0.36, 1);
    --mode-side: 132px;
    --mode-gap: 8px;
    --slider-width: 18px;
    --slider-start: 55px;
    --slider-end: calc(100% - 73px);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    background: var(--ichiki-bg);
    color: var(--ichiki-text);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

button,
a {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
}

a {
    text-decoration: none;
}

button:focus-visible,
a:focus-visible,
.artist-rail:focus-visible {
    outline: 2px solid var(--ichiki-text);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: -60px;
    left: 24px;
    z-index: 10000;
    padding: 10px 14px;
    background: var(--ichiki-text);
    color: var(--ichiki-bg);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.hub-shell {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 560px;
    overflow: hidden;
}

.artist-page-transition {
    position: fixed;
    z-index: 10000;
    overflow: hidden;
    pointer-events: none;
    background: #d8d8d8;
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.26);
    transition:
        top 0.84s var(--ease-out-expo),
        left 0.84s var(--ease-out-expo),
        width 0.84s var(--ease-out-expo),
        height 0.84s var(--ease-out-expo),
        border-radius 0.84s var(--ease-out-expo);
}

.artist-page-transition img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.02);
    transform: scale(1.002);
}

html.artist-returning .hub-shell {
    opacity: 0;
}

html.artist-returning.artist-return-reveal .hub-shell {
    opacity: 1;
    transition: opacity 0.55s ease 0.08s;
}

.artist-return-transition {
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.26), 0 12px 34px rgba(16, 16, 22, 0.1);
}

body.is-opening-artist .hub-shell {
    opacity: 0.12;
    transform: scale(0.985);
    transition: opacity 0.48s ease, transform 0.84s var(--ease-out-expo);
}

body.is-opening-artist .page-frame {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Original Ichiki frame: 12px inset, #565656 stroke, 8px radius. */
.page-frame {
    position: fixed;
    z-index: 2000;
    inset: var(--outside);
    border: 1px solid var(--ichiki-border);
    border-radius: 8px;
    pointer-events: none;
    opacity: 1;
}

.utility-bar {
    position: absolute;
    z-index: 25;
    top: auto;
    right: 28px;
    bottom: 25px;
    left: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    color: var(--ichiki-text);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.utility-bar p {
    margin: 0;
}

.utility-location {
    display: flex;
    align-items: center;
    gap: 7px;
}

.utility-location > span {
    width: 6px;
    height: 6px;
    border: 1px solid var(--ichiki-text);
    border-radius: 50%;
    background: transparent;
}

.utility-clocks {
    display: flex;
    gap: 8px;
}

/* Original dynamic-island movement: nodule -> 8px rectangular bar. */
.mode-island {
    position: fixed;
    z-index: 3000;
    top: calc(var(--outside) + 22px);
    left: 50%;
    width: 60px;
    height: 50px;
    min-height: 50px;
    overflow: visible;
    border: 0;
    border-radius: 50px;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: translateX(-50%) translateY(-100px);
    transition:
        width 1.2s var(--ease-out-expo),
        height 1.2s var(--ease-out-expo),
        min-height 1.2s var(--ease-out-expo),
        padding 1.2s var(--ease-out-expo),
        border-radius 1.2s var(--ease-out-expo),
        opacity 0.4s ease-out,
        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mode-island::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ichiki-text);
    transform: translate(-50%, -50%);
    transition: opacity 0.45s ease 0.1s, transform 0.6s var(--ease-out-expo);
}

.mode-island.is-nodule {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mode-island.is-ready {
    width: min(740px, calc(100vw - 220px));
    height: auto;
    min-height: 64px;
    border-radius: 0;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mode-island.is-ready::before {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.mode-island.is-hovered:not(.is-menu-open) {
    min-height: 64px;
}

.mode-island-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: var(--mode-side) minmax(0, 1fr) var(--mode-side);
    gap: var(--mode-gap);
    align-items: center;
    width: 100%;
    min-height: 62px;
    padding: 0;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.5s ease 0.42s, transform 0.7s var(--ease-out-expo) 0.35s;
}

.mode-slider {
    position: absolute;
    z-index: 1;
    top: auto;
    bottom: -8px;
    left: var(--slider-start);
    width: var(--slider-width);
    height: 18px;
    border-radius: 50%;
    background: var(--artist-green);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.42), 0 4px 10px rgba(16, 16, 22, 0.08);
    opacity: 0;
    transition:
        left 0.82s var(--fluid),
        width 0.82s var(--fluid),
        border-radius 0.82s var(--fluid),
        opacity 0.3s ease 0.42s;
}

.mode-island.is-ready .mode-slider {
    opacity: 1;
}

body[data-mode="events"] .mode-slider {
    left: var(--slider-end);
    border-radius: 50%;
    background: var(--artist-blue);
}

.mode-island.is-menu-open .mode-slider {
    opacity: 0.28;
    transition-delay: 0s;
}

body[data-mode="artists"] .mode-island.is-switching .mode-slider {
    animation: fluid-slide-left 0.9s cubic-bezier(0.65, 0, 0.35, 1) both;
}

body[data-mode="events"] .mode-island.is-switching .mode-slider {
    animation: fluid-slide-right 0.9s cubic-bezier(0.65, 0, 0.35, 1) both;
}

@keyframes fluid-slide-right {
    0% {
        left: var(--slider-start);
        width: var(--slider-width);
    }
    46% {
        left: calc(50% - 24px);
        width: 48px;
        border-radius: 10px 18px 9px 16px / 14px 9px 17px 11px;
    }
    100% {
        left: var(--slider-end);
        width: var(--slider-width);
    }
}

@keyframes fluid-slide-left {
    0% {
        left: var(--slider-end);
        width: var(--slider-width);
    }
    46% {
        left: calc(50% - 24px);
        width: 48px;
        border-radius: 18px 10px 16px 9px / 9px 14px 11px 17px;
    }
    100% {
        left: var(--slider-start);
        width: var(--slider-width);
    }
}

.mode-island.is-ready .mode-island-row {
    opacity: 1;
    transform: scale(1);
}

.mode-button,
.brand-button,
.menu-close {
    cursor: pointer;
    background: transparent;
}

.mode-button {
    align-self: stretch;
    position: relative;
    min-height: 62px;
    padding: 0 12px;
    border-radius: 19px 10px 22px 8px / 12px 20px 10px 23px;
    background: rgba(253, 253, 251, 0.93);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.42), 0 8px 26px rgba(16, 16, 22, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--ichiki-text);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: opacity 0.2s ease, background 0.6s var(--fluid), border-radius 0.6s var(--fluid), transform 0.45s var(--fluid);
}

.mode-button[data-mode-button="events"] {
    border-radius: 10px 19px 8px 22px / 20px 12px 23px 10px;
}

body[data-mode="artists"] .mode-button[data-mode-button="artists"] {
    background: var(--artist-green);
    border-radius: 19px 10px 22px 8px / 12px 20px 10px 23px;
}

body[data-mode="events"] .mode-button[data-mode-button="events"] {
    background: var(--artist-blue);
    border-radius: 10px 19px 8px 22px / 20px 12px 23px 10px;
}

.mode-button:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.mode-button::after {
    content: none;
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #73887f;
    opacity: 0;
    transform: translate(-50%, 4px);
    transition: opacity 0.25s ease, transform 0.35s var(--ease-out-expo);
}

body[data-mode="events"] .mode-button::after {
    background: #7699ad;
}

.mode-button.is-active::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.brand-button {
    position: relative;
    display: flex;
    min-width: 0;
    height: 62px;
    align-items: center;
    justify-content: center;
    padding: 0 26px 0 10px;
    border-radius: 12px 12px 19px 19px / 18px 18px 10px 10px;
    background: rgba(253, 253, 251, 0.93);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.42), 0 8px 26px rgba(16, 16, 22, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.6s var(--fluid), border-radius 0.6s var(--fluid), transform 0.45s var(--fluid);
}

.brand-button:hover {
    transform: translateY(-2px);
}

.brand-button img {
    display: block;
    width: min(270px, 100%);
    max-height: 36px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.brand-menu-mark {
    position: absolute;
    top: 50%;
    right: 9px;
    display: grid;
    width: 14px;
    height: 14px;
    place-items: center;
    color: var(--ichiki-muted);
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    opacity: 0.62;
    transform: translateY(-53%);
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.4s var(--ease-out-expo);
}

.brand-button:hover .brand-menu-mark {
    color: var(--ichiki-text);
    opacity: 1;
}

.mode-island.is-menu-open {
    width: min(740px, calc(100vw - 220px));
    height: 64px;
    min-height: 64px;
    border-radius: 0;
    background: transparent;
}

.mode-island.is-menu-open .brand-button {
    border-radius: 12px 12px 19px 19px / 18px 18px 10px 10px;
    background: #ece4d9;
}

.mode-island.is-menu-open .brand-menu-mark {
    transform: translateY(-53%) rotate(45deg);
}

.site-menu {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    width: calc(100% - (var(--mode-side) * 2) - (var(--mode-gap) * 2));
    height: 62px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
    border: 0;
    border-radius: 12px 12px 19px 19px / 18px 18px 10px 10px;
    background: var(--surface);
    box-shadow: 0 0 0 0 rgba(16, 16, 22, 0), 0 0 0 rgba(16, 16, 22, 0);
    opacity: 0;
    transform: translateX(-50%);
    transition:
        height 0.82s var(--fluid),
        border-radius 0.82s var(--fluid),
        opacity 0.18s ease 0.1s,
        box-shadow 0.45s ease;
}

.site-menu-content,
.site-menu-contact a,
.site-menu-legal span {
    min-width: 0;
    max-width: 100%;
}

.site-menu-legal span {
    overflow-wrap: anywhere;
}

.mode-island.is-menu-open .site-menu {
    width: calc(100% - (var(--mode-side) * 2) - (var(--mode-gap) * 2));
    height: 350px;
    pointer-events: auto;
    border-radius: 12px 12px 26px 26px / 18px 18px 20px 20px;
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.34), 0 16px 40px rgba(16, 16, 22, 0.09);
    opacity: 1;
}

.site-menu-content {
    width: 100%;
    height: 350px;
    padding: 82px 16px 22px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.22s ease, transform 0.42s var(--fluid);
}

.mode-island.is-menu-open .site-menu-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.34s;
}

.site-menu[hidden],
.menu-backdrop[hidden],
.mode-view[hidden],
.mode-actions[hidden] {
    display: none !important;
}

.site-menu-heading,
.site-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ichiki-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-menu-copy {
    max-width: 620px;
    margin: 17px 0 18px;
}

.site-menu-copy p {
    margin: 7px 0 0;
    color: var(--ichiki-muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.site-menu-copy .site-menu-lead {
    margin-top: 0;
    color: var(--ichiki-text);
    font-size: clamp(15px, 1.25vw, 17px);
    font-weight: 600;
    line-height: 1.38;
    letter-spacing: -0.015em;
}

.site-menu-contact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.site-menu-contact a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 0 0 0 1px var(--ichiki-border);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background 0.28s ease, color 0.28s ease, transform 0.42s var(--fluid);
}

.site-menu-contact a:nth-child(1) {
    border-radius: 15px 8px 18px 7px / 9px 17px 8px 19px;
}

.site-menu-contact a:nth-child(2) {
    border-radius: 8px 15px 9px 17px / 16px 9px 18px 8px;
}

.site-menu-contact a:nth-child(3) {
    border-radius: 9px 17px 7px 18px / 18px 8px 19px 9px;
}

.site-menu-contact a:hover {
    background: var(--ichiki-text);
    color: var(--ichiki-bg);
    transform: translateY(-2px);
}

.site-menu-contact a span {
    font-size: 12px;
    font-weight: 400;
}

.site-menu-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(86, 86, 86, 0.42);
    color: var(--ichiki-muted);
    font-size: 7px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.menu-close {
    padding: 4px;
    color: var(--ichiki-text);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 17px 0 20px;
    border-top: 1px solid var(--ichiki-border);
    border-left: 1px solid var(--ichiki-border);
}

.site-menu-grid a {
    display: flex;
    min-height: 45px;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-right: 1px solid var(--ichiki-border);
    border-bottom: 1px solid var(--ichiki-border);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-menu-grid a:hover {
    background: var(--ichiki-text);
    color: var(--ichiki-bg);
}

.site-menu-grid a span {
    color: var(--ichiki-muted);
    font-size: 8px;
}

.site-menu-footer {
    justify-content: flex-start;
    gap: 24px;
}

.menu-backdrop {
    position: fixed;
    z-index: 2999;
    inset: 0;
    pointer-events: none;
    cursor: pointer;
    background: rgba(16, 16, 22, 0.18);
    opacity: 0;
    transition: opacity 0.34s ease;
}

body.is-menu-open .menu-backdrop {
    pointer-events: auto;
    opacity: 1;
}

#hub-content {
    position: absolute;
    z-index: 10;
    top: 103px;
    right: 30px;
    bottom: 112px;
    left: 30px;
    min-height: 0;
}

body[data-mode="artists"] #hub-content {
    top: 0;
    bottom: 0;
}

body[data-mode="artists"] .bottom-bar {
    display: none;
}

.mode-view {
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.32s ease, transform 0.45s var(--ease-out-expo);
}

.mode-view.is-active {
    opacity: 1;
    transform: translateY(0);
}

html.hub-loading .page-frame,
html.hub-loading .utility-bar,
html.hub-loading .roster-orbit,
html.hub-loading .artist-card,
html.hub-loading .artist-card-copy,
html.hub-loading .event-poster,
html.hub-loading .event-summary,
html.hub-loading .news-dock {
    opacity: 0;
}

html.hub-loading .artist-image-wrap {
    clip-path: inset(48% 2% 48% 2% round 26px);
    filter: blur(3px);
}

html.hub-loading .roster-orbit path {
    stroke-dashoffset: 1;
}

html.hub-loading .roster-stem-guide,
html.hub-loading .roster-orbit circle {
    opacity: 0;
}

html.hub-loading .roster-stem-reveal {
    stroke-dashoffset: 1;
}

html.hub-entering .page-frame {
    animation: hub-fade-in 0.95s ease-out 0.04s both;
}

html.hub-entering .utility-bar {
    animation: hub-utility-emerge 1s var(--ease-out-expo) 1.45s both;
}

html.hub-entering .roster-orbit {
    animation: hub-orbit-emerge 1.1s ease-out 0.22s both;
}

html.hub-entering .roster-orbit path {
    animation: roster-orbit-draw 3.6s cubic-bezier(0.45, 0, 0.55, 1) 0.32s both;
}

html.hub-entering .roster-stem-guide {
    animation: hub-stem-emerge 0.8s ease-out 0.48s both;
}

html.hub-entering .roster-stem-reveal {
    animation: roster-stem-draw 3.45s cubic-bezier(0.45, 0, 0.55, 1) 0.58s both;
}

html.hub-entering .roster-orbit circle {
    animation: hub-node-emerge 0.9s var(--fluid) 1.02s both;
    transform-box: fill-box;
    transform-origin: center;
}

html.hub-entering .artist-card-bby {
    animation: hub-card-left 1.45s var(--ease-out-expo) 0.42s both;
}

html.hub-entering .artist-card-pitch {
    animation: hub-card-right 1.45s var(--ease-out-expo) 0.62s both;
}

html.hub-entering .artist-card-bby .artist-image-wrap {
    animation: hub-image-unmask 1.55s var(--ease-out-expo) 0.48s both;
}

html.hub-entering .artist-card-pitch .artist-image-wrap {
    animation: hub-image-unmask 1.55s var(--ease-out-expo) 0.68s both;
}

html.hub-entering .artist-card-bby .artist-card-copy {
    animation: hub-copy-emerge 0.9s var(--fluid) 1.08s both;
}

html.hub-entering .artist-card-pitch .artist-card-copy {
    animation: hub-copy-emerge 0.9s var(--fluid) 1.25s both;
}

html.hub-entering .event-poster {
    animation: hub-card-left 1.35s var(--ease-out-expo) 0.42s both;
}

html.hub-entering .event-summary {
    animation: hub-card-right 1.35s var(--ease-out-expo) 0.62s both;
}

html.hub-entering .news-dock {
    animation: hub-news-emerge 1.15s var(--fluid) 1.65s both;
}

@keyframes hub-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes hub-utility-emerge {
    from { opacity: 0; transform: translateY(9px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hub-orbit-emerge {
    from { opacity: 0; }
    to { opacity: 0.82; }
}

@keyframes hub-card-left {
    from { opacity: 0; transform: translate(24px, 18px) scale(0.92); }
    to { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes hub-card-right {
    from { opacity: 0; transform: translate(-24px, 18px) scale(0.92); }
    to { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes hub-image-unmask {
    from { clip-path: inset(48% 2% 48% 2% round 26px); filter: blur(3px); }
    to { clip-path: inset(0 0 0 0 round 0); filter: blur(0); }
}

@keyframes hub-copy-emerge {
    from { opacity: 0; transform: translateX(-50%) translateY(11px) scale(0.94); }
    to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

@keyframes hub-stem-emerge {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes hub-node-emerge {
    from { opacity: 0; transform: scale(0.2); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes hub-news-emerge {
    from { opacity: 0; transform: translateX(-50%) translateY(20px) scale(0.78); }
    to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.artist-mode {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.roster-orbit {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: min(900px, calc(100vw - 120px));
    height: min(530px, calc(100% - 10px));
    pointer-events: none;
    opacity: 0.82;
    transform: translate(-50%, -47%);
}

.roster-orbit svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.roster-orbit path,
.roster-orbit circle {
    vector-effect: non-scaling-stroke;
}

.roster-orbit path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
}

.roster-orbit-base {
    stroke: rgba(16, 16, 22, 0.12);
    stroke-width: 1px;
}

.roster-orbit-line {
    stroke-width: 1.25px;
    opacity: 0.64;
    transition: opacity 0.45s ease, stroke-width 0.55s var(--fluid), filter 0.45s ease;
}

.roster-orbit-left {
    stroke: #91a99d;
}

.roster-orbit-right {
    stroke: #93adbd;
}

.roster-orbit-bridge {
    stroke: rgba(16, 16, 22, 0.25);
    stroke-width: 1px;
}

.roster-stem-guide {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: 30px;
    height: calc(50% - 56px);
    overflow: visible;
    pointer-events: none;
    opacity: 0.82;
    transform: translateX(-50%);
}

.roster-stem-line {
    fill: none;
    stroke: rgba(16, 16, 22, 0.25);
    stroke-width: 1px;
    stroke-dasharray: 3 7;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.roster-stem-reveal {
    fill: none;
    stroke: #fff;
    stroke-width: 4px;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.roster-orbit-node {
    fill: var(--surface);
    stroke: rgba(16, 16, 22, 0.32);
    stroke-width: 1px;
}

.roster-orbit-node-left {
    fill: var(--artist-blue);
}

.roster-orbit-node-right {
    fill: var(--artist-green);
}

.roster-orbit-node-centre {
    fill: var(--surface);
}

@keyframes roster-orbit-draw {
    from {
        stroke-dashoffset: 1;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes roster-stem-draw {
    from {
        stroke-dashoffset: 1;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.orbit-note {
    position: absolute;
    z-index: 3;
    top: 49%;
    display: flex;
    min-height: 35px;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    pointer-events: none;
    border-radius: 15px 9px 17px 11px / 11px 16px 10px 17px;
    background: var(--surface);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.28), 0 8px 20px rgba(16, 16, 22, 0.05);
    color: var(--ichiki-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.065em;
    opacity: 0;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.25s ease, transform 0.6s var(--fluid);
}

.orbit-note span {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--artist-green);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.2);
}

.orbit-note-pitch {
    left: calc(50% + 345px);
    border-radius: 9px 15px 11px 17px / 16px 11px 17px 10px;
    transform: translateX(-18px) translateY(-50%) scale(0.96);
}

.orbit-note-bby {
    right: min(calc(50% + 345px), calc(100% - 150px));
    transform: translateX(18px) translateY(-50%) scale(0.96);
}

.orbit-note-bby span {
    background: var(--artist-blue);
}

.artist-mode:has(.artist-card-pitch:is(:hover, :focus-within)) .orbit-note-pitch,
.artist-mode:has(.artist-card-bby:is(:hover, :focus-within)) .orbit-note-bby {
    opacity: 1;
    transform: translateX(0) translateY(-50%) scale(1);
}

.artist-mode:has(.artist-card-pitch:is(:hover, :focus-within)) .roster-orbit-right,
.artist-mode:has(.artist-card-bby:is(:hover, :focus-within)) .roster-orbit-left {
    stroke-width: 1.8px;
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(16, 16, 22, 0.12));
}

.artist-mode:has(.artist-card-pitch:is(:hover, :focus-within)) .roster-orbit-left,
.artist-mode:has(.artist-card-bby:is(:hover, :focus-within)) .roster-orbit-right {
    opacity: 0.23;
}

.roster-intro {
    display: flex;
    min-height: 0;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0 3px;
}

.eyebrow {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 24px;
    color: var(--ichiki-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.roster-intro h1 {
    margin: 0;
    max-width: 10em;
    font-size: clamp(37px, 3.9vw, 62px);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.intro-copy {
    max-width: 30em;
    margin: 23px 0 0;
    color: var(--ichiki-text);
    font-size: clamp(12px, 1vw, 15px);
    font-weight: 500;
    line-height: 1.45;
}

.roster-navigation {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--ichiki-border);
}

.roster-navigation p {
    margin: 0;
    color: var(--ichiki-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.roster-navigation > div {
    display: flex;
    gap: 5px;
}

.roster-navigation button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    cursor: pointer;
    border: 1px solid var(--ichiki-border);
    border-radius: 4px;
    background: transparent;
    transition: color 0.2s ease, background 0.2s ease;
}

.roster-navigation button:hover {
    background: var(--ichiki-text);
    color: var(--ichiki-bg);
}

.artist-rail {
    display: grid;
    width: max-content;
    height: auto;
    grid-template-columns: repeat(2, minmax(220px, 270px));
    gap: clamp(28px, 5vw, 72px);
    overflow: visible;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.artist-rail::-webkit-scrollbar {
    display: none;
}

.artist-card {
    position: relative;
    z-index: 2;
    min-width: 0;
    height: auto;
    padding: 7px;
    border-radius: 28px 16px 31px 13px / 20px 29px 18px 32px;
    background: var(--artist-green);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.32), 0 8px 24px rgba(16, 16, 22, 0.045);
    scroll-snap-align: start;
    transition: transform 0.55s var(--fluid), box-shadow 0.35s ease;
}

.artist-card-bby {
    border-radius: 16px 28px 13px 31px / 29px 20px 32px 18px;
    background: var(--artist-blue);
}

.artist-card::after {
    content: "";
    position: absolute;
    z-index: 4;
    top: 48%;
    right: -9px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--surface);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.32);
}

.artist-card::before {
    content: "";
    position: absolute;
    z-index: 5;
    top: calc(48% + 6px);
    right: -2px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--ichiki-muted);
}

.artist-card-pitch::after {
    right: auto;
    left: -9px;
}

.artist-card-pitch::before {
    right: auto;
    left: -2px;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.38), 0 14px 32px rgba(16, 16, 22, 0.08);
}

.artist-card > a {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}

.artist-fan {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
}

.bby-fan-lines {
    position: absolute;
    z-index: 0;
    top: -80px;
    right: calc(100% - 2px);
    width: 260px;
    height: 500px;
    overflow: visible;
}

.bby-fan-lines path {
    fill: none;
    stroke: #93adbd;
    stroke-width: 1px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 430;
    stroke-dashoffset: 430;
    opacity: 0;
    vector-effect: non-scaling-stroke;
    transition: stroke-dashoffset 0.85s var(--ease-out-expo), opacity 0.25s ease;
}

.bby-fan-lines circle {
    fill: var(--artist-blue);
    stroke: rgba(16, 16, 22, 0.34);
    stroke-width: 1px;
    opacity: 0;
    vector-effect: non-scaling-stroke;
    transition: opacity 0.25s ease;
}

.bby-fan-card {
    position: absolute;
    z-index: 1;
    overflow: hidden;
    padding: 4px;
    border-radius: 20px 11px 23px 9px / 14px 22px 12px 24px;
    background: var(--artist-blue);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.3), 0 12px 26px rgba(16, 16, 22, 0.07);
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.75s var(--fluid);
}

.bby-fan-card img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px 7px 19px 6px / 10px 18px 8px 20px;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.01);
}

.bby-fan-card-feathers {
    top: -76px;
    right: calc(100% + 26px);
    width: 146px;
    aspect-ratio: 4 / 3;
    transform: translate(82px, 80px) rotate(7deg) scale(0.55);
}

.bby-fan-card-feathers img {
    object-position: 54% 50%;
}

.bby-fan-card-sunset {
    right: calc(100% + 46px);
    bottom: -55px;
    width: 128px;
    aspect-ratio: 4 / 3;
    border-radius: 11px 20px 9px 23px / 22px 14px 24px 12px;
    transform: translate(94px, -80px) rotate(-7deg) scale(0.55);
}

.bby-fan-card-sunset img {
    border-radius: 7px 16px 6px 19px / 18px 10px 20px 8px;
    object-position: 58% 50%;
}

.artist-card-bby:is(:hover, :focus-within) .bby-fan-lines path {
    stroke-dashoffset: 0;
    opacity: 0.8;
}

.artist-card-bby:is(:hover, :focus-within) .bby-fan-lines circle {
    opacity: 1;
}

.artist-card-bby:is(:hover, :focus-within) .bby-fan-card {
    opacity: 1;
}

.artist-card-bby:is(:hover, :focus-within) .bby-fan-card-feathers {
    transform: translate(0, 0) rotate(-4deg) scale(1);
    transition-delay: 0.08s;
}

.artist-card-bby:is(:hover, :focus-within) .bby-fan-card-sunset {
    transform: translate(0, 0) rotate(4deg) scale(1);
    transition-delay: 0.16s;
}

.artist-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 0;
    border-radius: 22px 10px 24px 8px / 15px 23px 13px 26px;
    background: #d8d8d8;
}

.artist-card-bby .artist-image-wrap {
    border-radius: 10px 22px 8px 24px / 23px 15px 26px 13px;
}

.artist-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.02);
    transition: transform 0.7s var(--ease-out-expo), filter 0.35s ease;
}

.artist-card-pitch img {
    object-position: 50% 50%;
}

.artist-card-bby img {
    object-position: 53% 50%;
}

.artist-card:hover .artist-image-wrap img {
    filter: saturate(1) contrast(1.02);
    transform: scale(1.02);
}

.artist-number,
.artist-status {
    position: absolute;
    z-index: 2;
    top: 11px;
    border: 1px solid var(--ichiki-border);
    border-radius: 4px;
    background: var(--ichiki-bg);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.artist-number {
    left: 11px;
    display: grid;
    width: 30px;
    height: 28px;
    place-items: center;
}

.artist-status {
    right: 11px;
    padding: 9px 10px;
}

.artist-card-copy {
    position: absolute;
    z-index: 3;
    bottom: -17px;
    left: 50%;
    min-width: 118px;
    padding: 10px 15px 9px;
    border-radius: 13px 13px 19px 9px / 13px 13px 16px 12px;
    background: var(--surface);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.3), 0 5px 14px rgba(16, 16, 22, 0.04);
    text-align: center;
    transform: translateX(-50%);
}

.artist-card-bby .artist-card-copy {
    border-radius: 13px 13px 9px 19px / 13px 13px 12px 16px;
}

.artist-card-copy h2 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.artist-card-copy p {
    margin: 0;
    color: var(--ichiki-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-arrow {
    display: grid;
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--ichiki-border);
    border-radius: 4px;
    font-size: 14px;
    transition: color 0.2s ease, background 0.2s ease;
}

.artist-card:hover .card-arrow {
    background: var(--ichiki-text);
    color: var(--ichiki-bg);
}

.events-mode {
    display: grid;
    grid-template-columns: minmax(290px, 0.82fr) minmax(440px, 1.18fr);
    align-items: stretch;
    gap: clamp(34px, 5vw, 72px);
}

.event-poster {
    position: relative;
    display: block;
    width: min(100%, 390px);
    height: 100%;
    min-height: 0;
    justify-self: center;
    overflow: hidden;
    padding: 7px;
    border-radius: 26px 15px 31px 12px / 19px 29px 16px 32px;
    background: var(--artist-green);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.32), 0 12px 30px rgba(16, 16, 22, 0.06);
    transition: transform 0.65s var(--fluid), box-shadow 0.35s ease;
}

.event-poster:hover {
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.4), 0 18px 38px rgba(16, 16, 22, 0.1);
    transform: translateY(-4px) rotate(-0.4deg);
}

.event-poster img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px 9px 24px 7px / 13px 23px 11px 26px;
    background: #ffffff;
    object-fit: contain;
    object-position: 50% 50%;
}

.event-poster > span {
    position: absolute;
    right: 15px;
    bottom: 14px;
    padding: 8px 10px;
    border-radius: 12px 8px 14px 9px;
    background: rgba(253, 253, 251, 0.93);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.25);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.events-content {
    display: flex;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    gap: 18px;
}

.events-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.events-header .eyebrow,
.events-header h1 {
    margin: 0;
}

.events-header .eyebrow {
    order: 2;
    min-width: 150px;
    padding-bottom: 6px;
}

.events-header h1 {
    font-size: clamp(45px, 5.4vw, 78px);
    font-weight: 700;
    line-height: 0.84;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.event-group {
    min-height: 0;
}

.event-group-heading {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(16, 16, 22, 0.35);
    border-bottom: 1px solid rgba(16, 16, 22, 0.24);
}

.event-group-heading h2,
.event-group-heading p {
    margin: 0;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.event-group-heading h2 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-group-heading h2 span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--artist-green);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.24);
}

.event-group-heading p {
    color: var(--ichiki-muted);
}

.event-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.event-list li {
    display: grid;
    min-height: 39px;
    grid-template-columns: 58px minmax(90px, 0.8fr) minmax(130px, 1.2fr);
    align-items: center;
    gap: 12px;
    padding: 0 8px 0 5px;
    border-bottom: 1px solid rgba(16, 16, 22, 0.2);
    transition: padding-left 0.35s var(--fluid), background 0.25s ease;
}

.event-list li:hover {
    padding-left: 11px;
    background: rgba(253, 253, 251, 0.7);
}

.event-list time,
.event-list strong,
.event-list span {
    font-size: 10px;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.event-list time,
.event-list span {
    color: var(--ichiki-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.07em;
}

.event-list strong {
    font-weight: 600;
}

.tour-recap {
    display: grid;
    grid-template-columns: minmax(190px, 0.8fr) minmax(220px, 1.2fr);
    align-items: end;
    gap: 22px;
    margin-top: auto;
    padding: 16px 17px;
    border-radius: 17px 11px 21px 9px / 13px 20px 10px 22px;
    background: var(--artist-blue);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.28);
}

.tour-recap p,
.tour-recap h2 {
    margin: 0;
}

.tour-recap > div > p {
    margin-bottom: 6px;
    color: var(--ichiki-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.tour-recap h2 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.tour-recap > p {
    color: var(--ichiki-muted);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* The Events view is intentionally a compact archive until future dates are confirmed. */
.events-mode {
    max-width: 980px;
    grid-template-columns: minmax(270px, 350px) minmax(360px, 520px);
    align-items: center;
    justify-content: center;
    gap: clamp(34px, 5vw, 72px);
    margin: 0 auto;
}

.event-poster {
    width: 100%;
    max-width: 350px;
    height: auto;
    align-self: center;
    aspect-ratio: 1336 / 1782;
}

.events-content {
    justify-content: center;
}

.event-summary {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(27px, 3.2vw, 42px);
    border-radius: 31px 18px 38px 15px / 23px 35px 18px 39px;
    background: var(--artist-blue);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.32), 0 16px 38px rgba(16, 16, 22, 0.07);
}

.event-summary p,
.event-summary h1 {
    margin: 0;
}

.event-summary-state {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ichiki-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.event-summary-state span {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--artist-green);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.25);
}

.event-summary h1 {
    margin-top: 24px;
    font-size: clamp(38px, 4.4vw, 62px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.event-summary-route {
    margin-top: 24px !important;
    color: var(--ichiki-muted);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.event-summary-copy {
    max-width: 34em;
    margin-top: 13px !important;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.event-summary-link {
    display: flex;
    min-height: 47px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding: 0 15px;
    border-radius: 15px 10px 19px 8px / 11px 18px 9px 20px;
    background: rgba(253, 253, 251, 0.88);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.3);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, padding 0.4s var(--fluid);
}

.event-summary-link:hover {
    padding-right: 19px;
    padding-left: 19px;
    background: var(--ichiki-text);
    color: var(--ichiki-bg);
}

.mobile-booking-link {
    display: none;
}

.news-dock {
    position: fixed;
    z-index: 2100;
    bottom: 25px;
    left: 50%;
    width: 0;
    height: 0;
    opacity: 1;
    transform: translateX(-50%);
    transition: opacity 0.35s ease, transform 0.55s var(--fluid);
}

body[data-mode="events"] .news-dock {
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) translateY(28px) scale(0.82);
}

.news-panel {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    width: 62px;
    height: 62px;
    overflow: hidden;
    pointer-events: none;
    border-radius: 50%;
    background: var(--surface);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.34), 0 12px 32px rgba(16, 16, 22, 0.08);
    opacity: 0;
    transform: translateX(-50%);
    transition:
        width 0.82s var(--fluid),
        height 0.82s var(--fluid),
        border-radius 0.82s var(--fluid),
        opacity 0.18s ease 0.18s,
        box-shadow 0.45s ease;
}

.news-dock.is-open .news-panel {
    width: min(560px, calc(100vw - 48px));
    height: 300px;
    pointer-events: auto;
    border-radius: 31px 18px 38px 15px / 23px 35px 18px 39px;
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.38), 0 22px 54px rgba(16, 16, 22, 0.13);
}

.news-panel-content {
    width: min(560px, calc(100vw - 48px));
    height: 300px;
    padding: 23px 21px 78px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.28s ease, transform 0.45s var(--fluid);
}

.news-dock.is-open .news-panel-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.36s;
}

.news-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 15px;
}

.news-panel-header p,
.news-panel-header h2 {
    margin: 0;
}

.news-panel-header p {
    margin-bottom: 4px;
    color: var(--ichiki-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-panel-header h2 {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.news-close {
    padding: 7px 9px;
    cursor: pointer;
    border-radius: 11px 9px 13px 8px;
    background: var(--surface-muted);
    color: var(--ichiki-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.news-list {
    border-top: 1px solid rgba(16, 16, 22, 0.34);
}

.news-item {
    position: relative;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    min-height: 45px;
    align-items: center;
    gap: 10px;
    padding: 0 8px 0 6px;
    border-bottom: 1px solid rgba(16, 16, 22, 0.24);
    transition: padding-left 0.35s var(--fluid), background 0.25s ease;
}

.news-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--artist-green);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.25);
    transform: translateY(-50%);
}

.news-item[data-news-artist="bby"]::before {
    background: var(--artist-blue);
}

.news-item:hover {
    padding-left: 12px;
    background: rgba(228, 228, 228, 0.58);
}

.news-item-index,
.news-item-meta {
    color: var(--ichiki-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.news-item strong {
    overflow: hidden;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.news-trigger {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 50%;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    padding: 6px;
    cursor: pointer;
    border-radius: 46% 54% 51% 49% / 54% 46% 54% 46%;
    background: transparent;
    box-shadow: none;
    transform: translateX(-50%);
    transition: bottom 0.72s var(--fluid), border-radius 0.72s var(--fluid), background 0.45s ease, transform 0.45s var(--fluid);
}

.news-trigger:hover {
    border-radius: 55% 45% 47% 53% / 46% 56% 44% 54%;
    transform: translateX(-50%) rotate(-2deg) scale(1.03);
}

.news-dock.is-open .news-trigger {
    bottom: 12px;
    border-radius: 50%;
    background: #ece4d9;
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.38), 0 9px 24px rgba(16, 16, 22, 0.08);
    transform: translateX(-50%) rotate(0) scale(1);
}

.news-icon-wrap {
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--ichiki-bg);
}

.news-icon-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transform: scale(1.34);
}

.news-trigger-label {
    position: absolute;
    top: 50%;
    right: 48px;
    width: 0;
    overflow: hidden;
    padding: 10px 0;
    border-radius: 13px 8px 10px 16px / 11px 13px 15px 9px;
    background: var(--surface);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.28), 0 7px 18px rgba(16, 16, 22, 0.05);
    color: var(--ichiki-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    opacity: 0;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    transform: translateY(-50%) translateX(14px);
    transition: width 0.55s var(--fluid), padding 0.55s var(--fluid), opacity 0.22s ease, transform 0.55s var(--fluid);
}

.news-dock:not(.is-open) .news-trigger:hover .news-trigger-label,
.news-dock:not(.is-open) .news-trigger:focus-visible .news-trigger-label {
    width: 106px;
    padding-right: 13px;
    padding-left: 13px;
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.news-dock.is-open .news-trigger-label {
    opacity: 0;
}

.bottom-bar {
    position: absolute;
    z-index: 25;
    right: 30px;
    bottom: 27px;
    left: 30px;
    display: flex;
    min-height: 66px;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

body[data-mode="events"] .bottom-bar {
    bottom: 47px;
}

.positioning-copy h2,
.positioning-copy p {
    margin: 0;
}

.positioning-copy {
    display: none;
}

.positioning-copy h2 {
    font-size: clamp(15px, 1.35vw, 20px);
    font-weight: 600;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.positioning-copy p {
    margin-top: 5px;
    color: var(--ichiki-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mode-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mode-actions a {
    display: inline-flex;
    min-height: 39px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 14px;
    border: 0;
    border-radius: 15px 15px 23px 10px / 15px 15px 18px 13px;
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.28);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease;
}

.mode-actions a:hover,
.primary-link {
    background: var(--ichiki-text);
    color: var(--ichiki-bg);
}

.primary-link:hover {
    background: transparent !important;
    color: var(--ichiki-text) !important;
}

@media (min-width: 1280px) and (min-height: 800px) {
    .artist-rail {
        grid-template-columns: repeat(2, clamp(270px, 20vw, 300px));
        gap: clamp(64px, 5vw, 82px);
    }

    .roster-orbit {
        width: min(1000px, calc(100vw - 140px));
        height: min(580px, calc(100% - 10px));
    }

    .news-panel,
    .news-trigger {
        width: 68px;
        height: 68px;
    }

    .news-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .roster-stem-guide {
        height: calc(50% - 59px);
    }
}

@media (min-width: 1600px) and (min-height: 850px) {
    .mode-island.is-ready {
        width: min(920px, 51.4vw);
    }
}

@media (max-width: 1040px) {
    .mode-island.is-ready {
        width: min(650px, calc(100vw - 190px));
    }

    .mode-island-row {
        grid-template-columns: var(--mode-side) minmax(0, 1fr) var(--mode-side);
    }

    :root {
        --mode-side: 106px;
        --mode-gap: 7px;
        --slider-width: 18px;
        --slider-start: 44px;
        --slider-end: calc(100% - 62px);
    }

    .mode-slider {
        top: auto;
        height: 18px;
    }

    .artist-mode {
        display: flex;
    }

    .events-mode {
        grid-template-columns: minmax(235px, 0.72fr) minmax(0, 1.28fr);
        gap: 24px;
    }

    .event-poster {
        width: min(100%, 340px);
        height: auto;
        align-self: center;
        aspect-ratio: 1336 / 1782;
    }

    .events-header h1 {
        font-size: clamp(42px, 6vw, 64px);
    }

    .tour-recap {
        grid-template-columns: minmax(170px, 0.9fr) minmax(180px, 1.1fr);
        gap: 14px;
    }

    .orbit-note {
        display: none;
    }

    .artist-fan {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --outside: 6px;
        --mode-side: 66px;
        --mode-gap: 6px;
        --slider-width: 16px;
        --slider-start: 27px;
        --slider-end: calc(100% - 43px);
    }

    .hub-shell {
        min-height: 500px;
    }

    /* The original mobile homepage deliberately removes the outer frame. */
    .page-frame {
        display: none;
    }

    .mode-island {
        top: 10px;
    }

    .mode-island.is-nodule:not(.is-ready) {
        width: 60px;
        max-width: 60px;
    }

    .mode-island.is-ready,
    .mode-island.is-menu-open {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        height: calc(100dvh - 20px);
        min-height: calc(100dvh - 20px);
        pointer-events: none;
    }

    .mode-island.is-ready {
        min-height: calc(100dvh - 20px);
    }

    .mode-island.is-hovered:not(.is-menu-open) {
        min-height: calc(100dvh - 20px);
    }

    .mode-island.is-menu-open {
        height: calc(100dvh - 20px);
        min-height: calc(100dvh - 20px);
    }

    .mode-island-row {
        position: absolute;
        inset: 0;
        display: block;
        min-height: 0;
        padding: 0;
        pointer-events: none;
    }

    .mode-button {
        position: absolute;
        bottom: 0;
        width: clamp(92px, 28vw, 112px);
        min-height: 56px;
        padding: 0 10px;
        pointer-events: auto;
        font-size: 10px;
    }

    .mode-button[data-mode-button="artists"] {
        left: 0;
    }

    .mode-button[data-mode-button="events"] {
        right: 0;
    }

    .mode-slider {
        display: none;
    }

    .brand-button {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 62px;
        padding-right: 38px;
        padding-left: 8px;
        pointer-events: auto;
    }

    .brand-button img {
        width: min(248px, calc(100% - 44px));
        max-height: 31px;
    }

    .brand-menu-mark {
        right: 9px;
        width: 24px;
        height: 24px;
        font-size: 18px;
        font-weight: 500;
        opacity: 0.82;
    }

    .site-menu {
        top: 0;
        width: 100%;
        height: 62px;
        margin: 0;
        padding: 0;
    }

    .mode-island.is-menu-open .site-menu {
        width: 100%;
        height: min(400px, calc(100dvh - 20px));
    }

    .site-menu-content {
        height: min(400px, calc(100dvh - 20px));
        padding: 74px 12px 16px;
        overflow-y: auto;
    }

    .site-menu-copy {
        margin: 13px 0 14px;
    }

    .site-menu-copy p {
        margin-top: 6px;
        font-size: 11px;
        line-height: 1.45;
    }

    .site-menu-copy .site-menu-lead {
        font-size: 13px;
        line-height: 1.42;
    }

    .site-menu-contact {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .site-menu-contact a {
        min-height: 38px;
        padding: 7px 8px;
        font-size: 9px;
    }

    .site-menu-legal {
        flex-direction: column;
        gap: 2px;
        margin-top: 11px;
        padding-top: 8px;
        font-size: 7px;
    }

    .site-menu-grid {
        margin: 12px 0 15px;
    }

    .site-menu-grid a {
        min-height: 39px;
        padding: 7px 8px;
        font-size: 10px;
    }

    .site-menu-footer {
        flex-wrap: wrap;
        gap: 9px 17px;
        font-size: 8px;
    }

    .utility-bar {
        display: none;
    }

    .utility-clocks {
        display: none;
    }

    #hub-content {
        top: 0;
        right: 20px;
        bottom: 0;
        left: 20px;
    }

    body[data-mode="artists"] #hub-content {
        top: 0;
        bottom: 0;
    }

    .artist-mode {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .roster-orbit {
        display: none;
    }

    .roster-stem-guide {
        display: none;
    }

    .roster-intro {
        display: block;
        flex: 0 0 auto;
        padding: 0;
    }

    .eyebrow {
        margin-bottom: 7px;
        font-size: 8px;
    }

    .roster-intro h1 {
        max-width: none;
        font-size: clamp(27px, 8.5vw, 36px);
        line-height: 0.94;
    }

    .roster-intro h1 br {
        display: none;
    }

    .roster-intro .intro-copy {
        max-width: 30em;
        margin-top: 7px;
        font-size: 10px;
        line-height: 1.35;
    }

    .roster-navigation {
        display: none;
    }

    .artist-rail {
        width: 100%;
        max-width: 520px;
        height: auto;
        padding: 18px 0;
        grid-template-columns: minmax(0, 1fr);
        grid-auto-flow: row;
        grid-auto-columns: auto;
        gap: 28px;
        overflow: visible;
    }

    .artist-image-wrap {
        height: clamp(126px, 21svh, 210px);
        aspect-ratio: auto;
    }

    .artist-card-pitch img {
        object-position: 50% 45%;
    }

    .artist-card-copy {
        bottom: -15px;
        min-width: 104px;
        padding: 8px 11px;
    }

    .artist-card-copy h2 {
        font-size: 12px;
    }

    .news-dock {
        z-index: 3100;
        bottom: 18px;
    }

    .news-trigger {
        width: 56px;
        height: 56px;
        padding: 5px;
    }

    .news-icon-wrap {
        width: 46px;
        height: 46px;
    }

    .news-dock.is-open .news-panel,
    .news-panel-content {
        width: calc(100vw - 24px);
        height: 304px;
    }

    .news-panel-content {
        padding: 18px 14px 70px;
    }

    .news-panel-header {
        padding-bottom: 12px;
    }

    .news-panel-header h2 {
        font-size: 18px;
    }

    .news-item {
        grid-template-columns: 23px minmax(0, 1fr);
        min-height: 47px;
        gap: 7px;
        padding-right: 5px;
    }

    .news-item-meta {
        grid-column: 2;
        margin-top: -10px;
        padding-bottom: 5px;
    }

    .news-item strong {
        font-size: 10px;
    }

    .artist-number,
    .artist-status {
        top: 8px;
    }

    .artist-number {
        left: 8px;
        width: 27px;
        height: 25px;
    }

    .artist-status {
        right: 8px;
        padding: 8px;
        font-size: 7px;
    }

    .card-arrow {
        width: 31px;
        height: 31px;
    }

    .events-mode {
        display: grid;
        max-width: none;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: max-content max-content;
        align-items: start;
        align-content: start;
        justify-items: center;
        gap: 16px;
        padding: 104px 0 90px;
        overflow-y: auto;
        scrollbar-width: none;
    }

    .event-poster {
        width: clamp(164px, 45vw, 230px);
        max-width: 230px;
        height: auto;
        align-self: start;
        aspect-ratio: 1336 / 1782;
        padding: 4px;
    }

    .event-poster > span {
        right: 8px;
        bottom: 8px;
        padding: 6px 7px;
        font-size: 6px;
    }

    .events-content {
        width: 100%;
        gap: 0;
        overflow: visible;
    }

    .events-content::-webkit-scrollbar {
        display: none;
    }

    .events-header {
        display: block;
    }

    .events-header .eyebrow {
        display: none;
    }

    .events-header h1 {
        font-size: 32px;
        line-height: 0.9;
    }

    .event-group-heading {
        min-height: 29px;
    }

    .event-group-heading p {
        display: none;
    }

    .event-list li {
        min-height: 39px;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 5px;
        padding-right: 2px;
    }

    .event-list li span {
        grid-column: 2;
        margin-top: -9px;
        padding-bottom: 4px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .event-list strong {
        font-size: 9px;
    }

    .tour-recap {
        display: block;
        margin-top: 0;
        padding: 11px;
    }

    .tour-recap h2 {
        font-size: 12px;
    }

    .tour-recap > p {
        margin-top: 8px;
        font-size: 7px;
    }

    .event-summary {
        min-height: 0;
        width: 100%;
        padding: 19px 17px 17px;
        border-radius: 24px 14px 29px 12px / 18px 27px 14px 30px;
    }

    .event-summary-state {
        font-size: 7px;
    }

    .event-summary h1 {
        margin-top: 16px;
        font-size: clamp(28px, 8.2vw, 40px);
    }

    .event-summary-route {
        margin-top: 16px !important;
        font-size: 7px;
    }

    .event-summary-copy {
        margin-top: 9px !important;
        font-size: 10px;
        line-height: 1.42;
    }

    .event-summary-link {
        min-height: 41px;
        margin-top: 17px;
        padding: 0 12px;
        font-size: 8px;
    }

    .mobile-booking-link {
        display: flex;
        width: 100%;
        min-height: 48px;
        align-items: center;
        justify-content: space-between;
        margin-top: 12px;
        padding: 0 16px;
        border-radius: 16px 10px 20px 8px / 12px 19px 10px 21px;
        background: var(--ichiki-text);
        box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.32);
        color: var(--ichiki-bg);
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.055em;
        text-transform: uppercase;
    }

    .bottom-bar {
        display: none;
    }

    .positioning-copy {
        max-width: 190px;
    }

    .positioning-copy h2 {
        font-size: 13px;
        line-height: 1.08;
    }

    .positioning-copy p {
        font-size: 7px;
    }

    .mode-actions {
        gap: 4px;
    }

    .mode-actions a {
        min-height: 37px;
        gap: 8px;
        padding: 0 10px;
        font-size: 8px;
    }

    .text-link {
        display: none !important;
    }
}

@media (max-width: 390px) {
    .roster-intro h1 {
        font-size: 26px;
    }

    .positioning-copy {
        max-width: 155px;
    }

    .positioning-copy h2 {
        font-size: 11px;
    }
}

@media (max-height: 650px) and (min-width: 769px) {
    #hub-content {
        top: 93px;
        bottom: 97px;
    }

    .bottom-bar {
        min-height: 54px;
    }

    .artist-card-copy {
        min-height: 0;
        padding: 8px 12px;
    }

    .artist-card-copy h2 {
        font-size: 11px;
    }
}

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