:root {
    --ap-bg: #ffffff;
    --ap-text: #111111;
    --ap-muted: #686868;
    --ap-padding-x: clamp(20px, 3.25vw, 56px);
    --ap-header-top: clamp(22px, 3vw, 48px);
    --ap-header-bottom: clamp(18px, 2.2vw, 34px);
    --ap-footer-height: 54px;
    --ap-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    background: var(--ap-bg);
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--ap-bg);
    color: var(--ap-text);
    font-family: var(--ap-font);
    font-size: 16px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

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

.site-shell {
    min-height: 100svh;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) var(--ap-footer-height);
    background: var(--ap-bg);
}

.site-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding: var(--ap-header-top) var(--ap-padding-x) var(--ap-header-bottom);
    background: var(--ap-bg);
}

.artist-identity {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
}

.artist-identity__eyebrow {
    margin: 0 0 9px;
    font-size: 0.64rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.artist-identity__name {
    font-size: clamp(1.5rem, 2vw, 2.25rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.artist-identity__role {
    margin-top: 8px;
    color: var(--ap-muted);
    font-size: clamp(0.72rem, 0.8vw, 0.86rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: lowercase;
}

.site-navigation {
    display: flex;
    justify-content: flex-end;
    min-height: 20px;
    padding-top: 1px;
}

.site-navigation__menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 32px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-navigation__menu a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-navigation__menu a:hover,
.site-navigation__menu a:focus-visible {
    opacity: 0.55;
}

.site-navigation__menu a:focus-visible,
.artist-identity:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 5px;
}

.site-main {
    min-height: 0;
    padding: 0 var(--ap-padding-x);
}

.hero {
    width: 100%;
    height: 100%;
    min-height: clamp(360px, 56vh, 860px);
    overflow: hidden;
    background: #f2f2f0;
}

.hero__image {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center center;
}

.hero__placeholder {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: grid;
    place-items: center;
    padding: 24px;
    background: #f2f2f0;
    color: #777;
    text-align: center;
    font-size: 0.8rem;
}

.site-footer {
    display: flex;
    align-items: center;
    min-height: var(--ap-footer-height);
    padding: 0 var(--ap-padding-x);
    background: var(--ap-bg);
}

.site-footer p {
    margin: 0;
    color: var(--ap-muted);
    font-size: 0.68rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.01em;
}

.site-main--content {
    padding-top: 24px;
    padding-bottom: 56px;
}

.content-entry {
    max-width: 820px;
    margin: 0 auto;
}

.content-entry h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.045em;
}

.content-entry__body {
    font-size: 1rem;
}

@media (max-width: 720px) {
    :root {
        --ap-padding-x: 18px;
        --ap-header-top: 22px;
        --ap-header-bottom: 18px;
        --ap-footer-height: 48px;
    }

    .site-header {
        gap: 20px;
    }

    .artist-identity__name {
        font-size: clamp(1.35rem, 7vw, 1.85rem);
    }

    .site-navigation__menu {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }

    .hero {
        min-height: clamp(380px, 62vh, 720px);
    }
}

@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;
    }
}
