:root {
    --page-bg: #ededed;
    --ink: #101016;
    --line: #565656;
    --muted: #6f6f72;
    --paper: #fdfdfb;
    --accent: #d7e4ec;
    --accent-line: #93adbd;
    --outside: 12px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --fluid: cubic-bezier(0.22, 1.24, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--page-bg);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--page-bg);
    color: var(--ink);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

body[data-accent="green"] {
    --accent: #d5dfda;
    --accent-line: #91a99d;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    font: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
}

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

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

.profile-frame {
    position: fixed;
    z-index: 9000;
    inset: var(--outside);
    border: 1px solid var(--line);
    border-radius: 8px;
    pointer-events: none;
}

.profile-return-cover {
    position: fixed;
    z-index: 10000;
    inset: var(--outside);
    overflow: hidden;
    pointer-events: none;
    border-radius: 8px;
    background: #d8d8d8;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-return-cover.is-visible {
    opacity: 1;
}

.profile-return-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.02);
}

body.is-closing-profile .profile-island,
body.is-closing-profile .profile-identity,
body.is-closing-profile .hero-scroll {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.profile-island {
    --island-state-fill: rgba(253, 253, 251, 0.93);
    position: fixed;
    z-index: 8000;
    top: 34px;
    left: 50%;
    display: grid;
    width: min(700px, calc(100vw - 240px));
    min-height: 58px;
    grid-template-columns: 128px minmax(0, 1fr) 128px;
    gap: 8px;
    transform: translateX(-50%);
}

.profile-island > * {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    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-color 0.58s var(--ease-out-expo),
        border-radius 0.58s var(--fluid),
        color 0.35s ease,
        transform 0.45s var(--fluid);
}

body[data-accent="blue"] .profile-island[data-island-state="biography"] {
    --island-state-fill: #d7e4ec;
}

body[data-accent="green"] .profile-island[data-island-state="biography"] {
    --island-state-fill: #d5dfda;
}

.profile-island[data-island-state="latest-project"] {
    --island-state-fill: #e5dbea;
}

.profile-island[data-island-state="selected-works"] {
    --island-state-fill: #dce5d6;
}

.profile-island[data-island-state="bookings"] {
    --island-state-fill: #ead9cf;
}

.profile-island.has-section-title > *,
.profile-island.has-section-title .profile-book {
    background-color: var(--island-state-fill) !important;
}

.profile-back {
    border-radius: 19px 10px 22px 8px / 12px 20px 10px 23px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, transform 0.45s var(--fluid);
}

.profile-back:hover {
    background: var(--accent);
    transform: translateY(2px);
}

.profile-brand {
    position: relative;
    min-height: 58px;
    overflow: hidden;
    padding: 10px 24px;
    border-radius: 12px 17px 10px 19px / 18px 11px 20px 10px;
}

.profile-brand img {
    display: block;
    width: min(230px, 100%);
    max-height: 34px;
    object-fit: contain;
    transition: opacity 0.32s ease, transform 0.58s var(--ease-out-expo);
}

.profile-island-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    opacity: 0;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.58s var(--ease-out-expo);
}

.profile-island.has-section-title .profile-brand img {
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
}

.profile-island.has-section-title .profile-island-title {
    opacity: 1;
    transform: translateY(0);
}

.profile-island.is-state-changing .profile-island-title {
    animation: profile-island-title-in 0.58s var(--ease-out-expo) both;
}

@keyframes profile-island-title-in {
    from {
        opacity: 0;
        transform: translateY(9px);
    }
}

.profile-book {
    border-radius: 10px 19px 8px 22px / 20px 12px 23px 10px;
    background: var(--accent) !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, transform 0.45s var(--fluid);
}

.profile-book:hover {
    background: var(--ink) !important;
    color: var(--paper);
    transform: translateY(2px);
}

.profile-hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 620px;
    padding: var(--outside);
    background: var(--page-bg);
}

.profile-hero-media {
    position: absolute;
    inset: var(--outside);
    overflow: hidden;
    border-radius: 8px;
    background: #d8d8d8;
}

.profile-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 12, 0.08) 0%, transparent 32%),
        linear-gradient(0deg, rgba(8, 8, 12, 0.66) 0%, rgba(8, 8, 12, 0.05) 52%, transparent 70%);
}

.profile-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.02);
}

.profile-hero-bby .profile-hero-media img {
    object-position: 53% 50%;
}

.profile-hero-pitch .profile-hero-media img {
    object-position: 50% 50%;
}

.profile-identity {
    position: absolute;
    z-index: 3;
    right: clamp(38px, 5vw, 76px);
    bottom: clamp(44px, 7vh, 84px);
    left: clamp(38px, 5vw, 76px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 32px;
    color: #fff;
}

.profile-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.profile-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.profile-identity h1 {
    max-width: 10em;
    margin: 0;
    font-size: clamp(66px, 10.5vw, 160px);
    font-weight: 700;
    line-height: 0.78;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.hero-booking {
    display: flex;
    min-width: 210px;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 18px;
    border-radius: 17px 10px 19px 9px / 11px 18px 10px 20px;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.46);
    color: var(--ink);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: border-radius 0.45s var(--fluid), transform 0.45s var(--fluid);
}

.hero-booking:hover {
    border-radius: 9px 19px 10px 17px / 18px 11px 20px 10px;
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 28px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.profile-main {
    position: relative;
    z-index: 2;
    padding: 96px max(34px, 6vw) 48px;
    background: var(--page-bg);
}

.profile-intro {
    display: grid;
    max-width: 1280px;
    margin: 0 auto 112px;
    grid-template-columns: minmax(180px, 0.7fr) minmax(440px, 1.3fr);
    gap: clamp(46px, 9vw, 150px);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.section-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.24);
}

.profile-intro-copy > p {
    max-width: 23em;
    margin: 0;
    font-size: clamp(28px, 3.7vw, 56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.profile-intro-meta {
    display: grid;
    margin-top: 54px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(16, 16, 22, 0.38);
}

.profile-intro-meta > div {
    min-height: 88px;
    padding: 15px 15px 12px 0;
    border-right: 1px solid rgba(16, 16, 22, 0.22);
}

.profile-intro-meta > div:not(:first-child) {
    padding-left: 15px;
}

.profile-intro-meta > div:last-child {
    border-right: 0;
}

.profile-intro-meta span,
.profile-intro-meta a {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.profile-intro-meta a:hover {
    text-decoration: underline;
}

.feature {
    position: relative;
    display: grid;
    max-width: 1280px;
    margin: 0 auto 112px;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: stretch;
    gap: clamp(22px, 4vw, 58px);
}

.feature-media {
    position: relative;
    min-height: min(64vw, 690px);
    overflow: hidden;
    padding: 8px;
    border-radius: 32px 17px 36px 14px / 21px 34px 18px 38px;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.32);
}

.feature-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border-radius: 25px 10px 29px 8px / 14px 27px 11px 31px;
    object-fit: cover;
}

.feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(26px, 4vw, 56px);
    border-radius: 18px 32px 14px 36px / 34px 21px 38px 18px;
    background: var(--paper);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.3);
}

.feature-copy h2 {
    max-width: 7.5em;
    margin: 20px 0 34px;
    font-size: clamp(48px, 6.3vw, 96px);
    font-weight: 700;
    line-height: 0.84;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.feature-copy > div > p:last-child {
    max-width: 31em;
    margin: 0;
    font-size: clamp(13px, 1.3vw, 17px);
    line-height: 1.55;
}

.feature-bio {
    max-width: 38em;
}

.feature-bio p {
    margin: 0;
    font-size: clamp(13px, 1.15vw, 16px);
    line-height: 1.58;
}

.feature-bio p + p {
    margin-top: 18px;
}

.feature-bio a {
    text-decoration: underline;
    text-decoration-color: rgba(16, 16, 22, 0.35);
    text-underline-offset: 3px;
}

.profile-links {
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(16, 16, 22, 0.28);
    border-left: 1px solid rgba(16, 16, 22, 0.28);
}

.profile-links a {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-right: 1px solid rgba(16, 16, 22, 0.28);
    border-bottom: 1px solid rgba(16, 16, 22, 0.28);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
}

.profile-links a:hover {
    background: var(--ink);
    color: var(--paper);
}

.feature-link {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding: 0 15px;
    border: 1px solid rgba(16, 16, 22, 0.4);
    border-radius: 15px 9px 17px 8px / 10px 16px 9px 18px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
}

.feature-link:hover {
    background: var(--ink);
    color: var(--paper);
}

.profile-index {
    max-width: 1280px;
    margin: 0 auto 112px;
    border-top: 1px solid rgba(16, 16, 22, 0.4);
}

.profile-index-heading {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.profile-index-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

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

.index-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid rgba(16, 16, 22, 0.4);
}

.index-list li {
    display: grid;
    min-height: 76px;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(16, 16, 22, 0.22);
}

.index-list li::before {
    content: attr(data-index);
    color: var(--muted);
    font-size: 9px;
}

.index-list strong {
    font-size: 13px;
    font-weight: 600;
}

.index-list span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.release-link {
    display: grid;
    min-height: 75px;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 8px 12px 8px 0;
    transition: background 0.25s ease, padding 0.35s var(--ease-out-expo);
}

.release-link:hover {
    padding-left: 8px;
    background: rgba(253, 253, 251, 0.42);
}

.index-list .release-art {
    display: block;
    width: 58px;
    height: 58px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 16, 22, 0.32);
    border-radius: 12px 7px 14px 6px / 8px 13px 7px 15px;
    background: var(--paper);
    transition: transform 0.35s var(--fluid);
}

.release-link:hover .release-art {
    transform: rotate(-2deg) scale(1.04);
}

.release-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-list .release-art-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
}

.release-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.index-list .release-copy strong {
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index-list .release-copy > span {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.index-list .release-arrow {
    color: var(--ink);
    font-size: 15px;
    transition: transform 0.35s var(--ease-out-expo);
}

.release-link:hover .release-arrow {
    transform: translate(3px, -3px);
}

.profile-tour,
.profile-archive,
.profile-agents {
    max-width: 1280px;
    margin: 0 auto 112px;
}

.profile-tour-heading,
.profile-archive-heading,
.profile-agents-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    align-items: end;
    gap: clamp(34px, 7vw, 110px);
    padding-top: 28px;
    border-top: 1px solid rgba(16, 16, 22, 0.4);
}

.profile-tour-heading h2,
.profile-archive-heading h2,
.profile-agents-heading h2 {
    margin: 24px 0 0;
    font-size: clamp(44px, 7vw, 96px);
    font-weight: 700;
    line-height: 0.86;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.profile-tour-copy {
    max-width: 34em;
    padding-bottom: 4px;
}

.profile-tour-copy p {
    margin: 0;
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.55;
}

.profile-tour-copy p + p {
    margin-top: 12px;
    color: var(--muted);
}

.profile-tour-copy a {
    display: inline-block;
    margin-top: 22px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-transform: uppercase;
}

.tour-route {
    display: grid;
    margin: 56px 0 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    border-top: 1px solid rgba(16, 16, 22, 0.34);
    border-left: 1px solid rgba(16, 16, 22, 0.34);
}

.tour-route li {
    display: grid;
    min-height: 88px;
    grid-template-columns: 54px minmax(0, 1fr);
    align-content: center;
    gap: 7px 12px;
    padding: 14px;
    border-right: 1px solid rgba(16, 16, 22, 0.34);
    border-bottom: 1px solid rgba(16, 16, 22, 0.34);
}

.tour-route time,
.tour-route span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tour-route strong {
    font-size: 13px;
    font-weight: 600;
}

.tour-route span {
    grid-column: 2;
}

.tour-carousel {
    margin-top: 40px;
}

.tour-carousel-bar {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(16, 16, 22, 0.34);
}

.tour-carousel-bar > p,
.tour-carousel-controls {
    margin: 0;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.tour-carousel-controls {
    display: flex;
    align-items: center;
    gap: 7px;
}

.tour-carousel-controls > span {
    min-width: 52px;
    color: var(--muted);
}

.tour-carousel-controls b {
    color: var(--ink);
    font-weight: 600;
}

.tour-carousel-controls button {
    display: grid;
    width: 32px;
    height: 32px;
    padding: 0;
    place-items: center;
    cursor: pointer;
    border: 0;
    border-radius: 13px 9px 15px 8px / 9px 14px 8px 15px;
    background: var(--paper);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.35);
    transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease, transform 0.35s var(--fluid);
}

.tour-carousel-controls button:nth-child(3) {
    border-radius: 9px 13px 8px 15px / 14px 9px 15px 8px;
}

.tour-carousel-controls button:hover:not(:disabled) {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-2px);
}

.tour-carousel-controls button:disabled {
    cursor: default;
    opacity: 0.34;
}

.tour-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 2px 1px 20px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.tour-track::-webkit-scrollbar {
    display: none;
}

.tour-slide {
    width: clamp(270px, 31vw, 405px);
    flex: 0 0 auto;
    margin: 0;
    scroll-snap-align: start;
}

.tour-poster {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    padding: 7px;
    border-radius: 18px 31px 14px 34px / 32px 19px 36px 16px;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.32);
}

.tour-slide:nth-child(even) .tour-poster {
    border-radius: 31px 18px 34px 14px / 19px 32px 16px 36px;
}

.tour-poster img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px 24px 9px 27px / 25px 12px 29px 9px;
    background: #e4e4e4;
    object-fit: contain;
}

.tour-slide:nth-child(even) .tour-poster img {
    border-radius: 24px 12px 27px 9px / 12px 25px 9px 29px;
}

.tour-slide figcaption {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 8px 0;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.tour-slide figcaption a:hover {
    text-decoration: underline;
}

.profile-archive-heading,
.profile-agents-heading {
    grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
}

.profile-archive-grid {
    display: grid;
    margin-top: 58px;
    grid-template-columns: minmax(310px, 0.82fr) minmax(480px, 1.18fr);
    gap: clamp(22px, 4vw, 58px);
}

.archive-group {
    align-self: start;
    border-top: 1px solid rgba(16, 16, 22, 0.4);
}

.archive-group > header {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.archive-group h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.archive-group > header span,
.archive-disclosure summary span {
    color: var(--muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.archive-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid rgba(16, 16, 22, 0.34);
}

.archive-list li {
    display: grid;
    min-height: 45px;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid rgba(16, 16, 22, 0.2);
}

.archive-list li > span,
.archive-list small {
    color: var(--muted);
    font-size: 8px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.archive-list a {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
}

.archive-list a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.archive-list-press li {
    grid-template-columns: 48px minmax(0, 1fr);
}

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

.archive-disclosure summary {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.055em;
    list-style: none;
    text-transform: uppercase;
}

.archive-disclosure summary::-webkit-details-marker {
    display: none;
}

.archive-disclosure summary::before {
    content: "+";
    width: 18px;
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 400;
}

.archive-disclosure[open] summary::before {
    content: "−";
}

.archive-disclosure summary span {
    margin-left: auto;
}

.profile-agents-heading {
    align-items: start;
}

.agent-grid {
    display: grid;
    margin-top: 58px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.agent-card {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border-radius: 17px 29px 14px 31px / 28px 18px 33px 15px;
    background: var(--paper);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.3);
}

.agent-card:nth-child(2) {
    border-radius: 29px 17px 31px 14px / 18px 28px 15px 33px;
}

.agent-card:nth-child(3) {
    background: var(--accent);
    border-radius: 20px 13px 28px 17px / 14px 26px 18px 30px;
}

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

.agent-card h3 {
    margin: auto 0 24px;
    font-size: clamp(24px, 2.7vw, 40px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.agent-card a {
    padding-top: 12px;
    border-top: 1px solid rgba(16, 16, 22, 0.3);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.agent-card a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.profile-gallery {
    display: grid;
    max-width: 1280px;
    margin: 0 auto 112px;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: clamp(22px, 4vw, 58px);
}

.gallery-card {
    overflow: hidden;
    padding: 7px;
    border-radius: 17px 31px 14px 35px / 33px 20px 37px 17px;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.3);
}

.gallery-card:nth-child(2) {
    border-radius: 31px 17px 35px 14px / 20px 33px 17px 37px;
}

.gallery-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 11px 24px 9px 28px / 26px 13px 30px 10px;
    object-fit: cover;
}

.gallery-card:nth-child(2) img {
    border-radius: 24px 11px 28px 9px / 13px 26px 10px 30px;
}

.gallery-card-poster img {
    aspect-ratio: 3 / 4;
    object-fit: contain;
    background: #fff;
}

.gallery-card figcaption {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 8px 7px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.profile-footer {
    position: relative;
    margin: 0 var(--outside) var(--outside);
    overflow: hidden;
    padding: clamp(46px, 7vw, 100px) clamp(28px, 6vw, 86px);
    border-radius: 26px 14px 30px 12px / 18px 28px 15px 32px;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(16, 16, 22, 0.34);
}

.profile-footer p {
    margin: 0 0 16px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.profile-footer a {
    display: inline-block;
    font-size: clamp(40px, 7.6vw, 118px);
    font-weight: 700;
    line-height: 0.84;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.profile-footer a::after {
    content: " ↗";
    font-size: 0.35em;
    vertical-align: top;
}

.profile-footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 72px;
    padding-top: 16px;
    border-top: 1px solid rgba(16, 16, 22, 0.34);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.profile-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.95s var(--ease-out-expo);
}

.profile-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.profile-island,
.profile-identity,
.hero-scroll {
    animation: profile-interface-in 0.75s ease 0.24s both;
}

html.transition-arrival .profile-island,
html.transition-arrival .profile-identity,
html.transition-arrival .hero-scroll {
    animation-delay: 0.46s;
}

@keyframes profile-interface-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-12px);
    }
}

.profile-identity,
.hero-scroll {
    animation-name: profile-copy-in;
}

@keyframes profile-copy-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
}

@media (max-width: 900px) {
    .profile-island {
        width: min(620px, calc(100vw - 96px));
        grid-template-columns: 106px minmax(0, 1fr) 106px;
        gap: 7px;
    }

    .profile-intro {
        grid-template-columns: 140px minmax(0, 1fr);
        gap: 42px;
    }

    .feature {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    }
}

@media (max-width: 680px) {
    :root {
        --outside: 0px;
    }

    .profile-frame {
        display: none;
    }

    .profile-island {
        top: 12px;
        width: calc(100vw - 24px);
        min-height: 52px;
        grid-template-columns: 66px minmax(0, 1fr) 74px;
        gap: 5px;
    }

    .profile-island > * {
        min-height: 52px;
    }

    .profile-back,
    .profile-book {
        font-size: 8px;
        letter-spacing: 0.04em;
    }

    .profile-brand {
        min-height: 52px;
        padding: 9px 10px;
    }

    .profile-brand img {
        max-height: 27px;
    }

    .profile-island-title {
        padding: 0 8px;
        font-size: 11px;
        letter-spacing: 0.06em;
    }

    .profile-hero {
        min-height: 560px;
    }

    .profile-hero-media,
    .profile-hero-media img {
        border-radius: 0;
    }

    .profile-identity {
        right: 18px;
        bottom: 24px;
        left: 18px;
        display: block;
    }

    .profile-kicker {
        margin-bottom: 10px;
        font-size: 8px;
    }

    .profile-identity h1 {
        font-size: clamp(56px, 21vw, 90px);
        line-height: 0.78;
    }

    .hero-booking {
        width: 100%;
        min-height: 47px;
        margin-top: 22px;
    }

    .hero-scroll {
        display: none;
    }

    .profile-main {
        padding: 64px 18px 24px;
    }

    .profile-intro {
        display: block;
        margin-bottom: 72px;
    }

    .profile-intro-copy {
        margin-top: 30px;
    }

    .profile-intro-copy > p {
        font-size: clamp(29px, 9.2vw, 42px);
    }

    .profile-intro-meta {
        margin-top: 36px;
    }

    .profile-intro-meta > div {
        min-height: 76px;
        padding: 12px 8px 8px 0;
    }

    .profile-intro-meta > div:not(:first-child) {
        padding-left: 9px;
    }

    .profile-intro-meta span,
    .profile-intro-meta a {
        font-size: 10px;
    }

    .feature {
        display: flex;
        margin-bottom: 72px;
        flex-direction: column;
        gap: 14px;
    }

    .feature-media {
        min-height: 118vw;
        padding: 6px;
    }

    .feature-copy {
        min-height: 470px;
        padding: 28px 24px;
    }

    .feature-copy h2 {
        font-size: 55px;
    }

    .feature-bio p {
        font-size: 13px;
        line-height: 1.55;
    }

    .feature-bio p + p {
        margin-top: 16px;
    }

    .profile-links {
        margin-top: 24px;
    }

    .profile-links a {
        min-height: 38px;
        padding: 9px;
        font-size: 8px;
    }

    .profile-index {
        margin-bottom: 72px;
    }

    .profile-index-heading {
        min-height: 64px;
    }

    .profile-index-heading h2 {
        font-size: 25px;
    }

    .index-list li {
        min-height: 68px;
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 8px;
    }

    .index-list li > span {
        grid-column: 2;
        margin-top: -14px;
        padding-bottom: 7px;
    }

    .release-link {
        min-height: 67px;
        grid-template-columns: 50px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 8px 4px 8px 0;
    }

    .release-link:hover {
        padding-left: 4px;
    }

    .index-list .release-art {
        width: 50px;
        height: 50px;
    }

    .index-list .release-copy strong {
        font-size: 11px;
    }

    .index-list .release-arrow {
        font-size: 13px;
    }

    .profile-tour,
    .profile-archive,
    .profile-agents {
        margin-bottom: 72px;
    }

    .profile-tour-heading,
    .profile-archive-heading,
    .profile-agents-heading {
        display: block;
        padding-top: 20px;
    }

    .profile-tour-heading h2,
    .profile-archive-heading h2,
    .profile-agents-heading h2 {
        margin-top: 20px;
        font-size: clamp(41px, 13vw, 56px);
    }

    .profile-tour-copy {
        margin-top: 32px;
    }

    .profile-tour-copy p {
        font-size: 12px;
    }

    .tour-route {
        margin-top: 38px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tour-route li {
        min-height: 82px;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 6px 8px;
        padding: 11px;
    }

    .tour-route strong {
        font-size: 11px;
    }

    .tour-route time,
    .tour-route span {
        font-size: 7px;
    }

    .tour-carousel {
        margin-top: 30px;
    }

    .tour-carousel-bar {
        min-height: 46px;
    }

    .tour-carousel-bar > p,
    .tour-carousel-controls {
        font-size: 8px;
    }

    .tour-carousel-controls > span {
        min-width: 45px;
    }

    .tour-carousel-controls button {
        width: 30px;
        height: 30px;
    }

    .tour-track {
        gap: 12px;
        padding-bottom: 16px;
    }

    .tour-slide {
        width: min(78vw, 310px);
    }

    .tour-poster {
        padding: 5px;
    }

    .profile-archive-grid {
        display: block;
        margin-top: 38px;
    }

    .archive-group + .archive-group {
        margin-top: 44px;
    }

    .archive-group > header {
        min-height: 56px;
    }

    .archive-group h3 {
        font-size: 16px;
    }

    .archive-list li {
        min-height: 48px;
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 8px;
    }

    .archive-list small {
        grid-column: 2;
        margin-top: -7px;
        padding-bottom: 4px;
    }

    .archive-list-press li {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .archive-list a {
        font-size: 10px;
    }

    .archive-disclosure summary {
        min-height: 52px;
        font-size: 10px;
    }

    .agent-grid {
        margin-top: 38px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .agent-card {
        min-height: 170px;
        padding: 18px;
    }

    .agent-card h3 {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .profile-gallery {
        margin-bottom: 72px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-card:nth-child(2) {
        width: 82%;
        justify-self: end;
    }

    .profile-footer {
        margin: 0 6px 6px;
        padding: 46px 24px 28px;
    }

    .profile-footer a {
        font-size: clamp(40px, 14vw, 62px);
    }

    .profile-footer-meta {
        display: block;
        margin-top: 54px;
        line-height: 1.8;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
