/* Shared foundation */
:root {
    color-scheme: dark;
    font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.shell-wide {
    width: min(1320px, calc(100% - 64px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: #000;
    background: #fff;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.pointer-glow {
    position: fixed;
    z-index: 0;
    width: 440px;
    height: 440px;
    left: calc(var(--pointer-x, 50vw) - 220px);
    top: calc(var(--pointer-y, 30vh) - 220px);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s ease;
}

body.pointer-ready .pointer-glow {
    opacity: 1;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.motion-ready .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
}

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

/* Codeschlau */
.site-codeschlau {
    --cs-bg: #070a0f;
    --cs-panel: #0e131b;
    --cs-line: #202a37;
    --cs-text: #f4f7fb;
    --cs-muted: #95a3b5;
    --cs-cyan: #34e6ef;
    --cs-lime: #bbf451;
    color: var(--cs-text);
    background:
        radial-gradient(circle at 15% 18%, rgba(52, 230, 239, .09), transparent 24%),
        radial-gradient(circle at 86% 68%, rgba(119, 73, 255, .1), transparent 27%),
        var(--cs-bg);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.site-codeschlau .pointer-glow {
    background: radial-gradient(circle, rgba(52, 230, 239, .08), transparent 66%);
}

.cs-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.cs-nav,
.cs-hero,
.cs-projects,
.cs-profile,
.cs-footer {
    position: relative;
    z-index: 1;
}

.cs-nav {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cs-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Inter, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.04em;
}

.cs-logo strong {
    color: var(--cs-cyan);
}

.cs-logo-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #071014;
    background: var(--cs-cyan);
    border-radius: 12px 4px 12px 4px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 0 30px rgba(52, 230, 239, .25);
}

.cs-nav nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.cs-nav nav a {
    color: var(--cs-muted);
    font-size: 12px;
    letter-spacing: .06em;
    transition: color .25s ease;
}

.cs-nav nav a:hover {
    color: var(--cs-text);
}

.cs-nav .nav-action {
    padding: 12px 16px;
    color: var(--cs-text);
    border: 1px solid var(--cs-line);
    border-radius: 8px;
    background: rgba(255,255,255,.025);
}

.cs-hero {
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 80px;
    padding: 84px 0 110px;
}

.micro-label {
    margin: 0 0 25px;
    color: var(--cs-cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}

.micro-label::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 1px;
    margin: 0 14px 3px 0;
    background: currentColor;
}

.cs-hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(56px, 7vw, 104px);
    line-height: .91;
    letter-spacing: -.075em;
}

.cs-hero h1 span,
.cs-hero h1 em {
    display: block;
}

.cs-hero h1 em {
    color: transparent;
    background: linear-gradient(100deg, var(--cs-cyan), #7cf5d0 52%, var(--cs-lime));
    -webkit-background-clip: text;
    background-clip: text;
    font-style: normal;
}

.cs-hero .hero-copy {
    max-width: 650px;
    margin: 34px 0 0;
    color: var(--cs-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-width: 210px;
    padding: 17px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease;
}

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

.button-primary {
    color: #041014;
    background: var(--cs-cyan);
    box-shadow: 0 12px 40px rgba(52, 230, 239, .16);
}

.availability {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cs-muted);
    font-size: 11px;
}

.availability i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cs-lime);
    box-shadow: 0 0 0 6px rgba(187, 244, 81, .08);
    animation: csPulse 2s ease-in-out infinite;
}

@keyframes csPulse {
    50% { box-shadow: 0 0 0 11px rgba(187, 244, 81, 0); }
}

.cs-console {
    position: relative;
    min-height: 380px;
    border: 1px solid var(--cs-line);
    border-radius: 14px;
    background: rgba(10, 15, 22, .86);
    box-shadow: 0 40px 100px rgba(0,0,0,.45);
    backdrop-filter: blur(18px);
}

.cs-console::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(52,230,239,.4), transparent 34%, transparent 70%, rgba(187,244,81,.2));
    filter: blur(16px);
    opacity: .42;
}

.console-top {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    border-bottom: 1px solid var(--cs-line);
}

.console-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff6b6b;
}

.console-top span:nth-child(2) { background: #ffd166; }
.console-top span:nth-child(3) { background: #76e6a5; }

.console-top b {
    margin-left: auto;
    color: #657283;
    font-size: 10px;
    font-weight: 500;
}

.console-body {
    padding: 42px 38px;
    font-size: 14px;
    line-height: 1.8;
}

.console-body p { margin: 0; }
.console-body .indent { padding-left: 27px; }
.token-purple { color: #ba8cff; }
.token-blue { color: var(--cs-cyan); }
.token-green { color: var(--cs-lime); }
.token-orange { color: #ffb86b; }

.console-result {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px !important;
    padding-top: 22px;
    color: var(--cs-muted);
    border-top: 1px dashed var(--cs-line);
}

.console-result span { color: var(--cs-cyan); }
.console-result i {
    display: inline-block;
    width: 7px;
    height: 16px;
    background: var(--cs-cyan);
    animation: blink 1s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.console-orbit {
    position: absolute;
    z-index: -2;
    border: 1px solid rgba(52,230,239,.14);
    border-radius: 50%;
    animation: orbitSpin 16s linear infinite;
}

.console-orbit::after {
    content: "";
    position: absolute;
    top: 11%;
    left: 11%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cs-cyan);
    box-shadow: 0 0 16px var(--cs-cyan);
}

.orbit-one { inset: -70px; }
.orbit-two { inset: -128px; animation-direction: reverse; animation-duration: 24s; }
.orbit-two::after { background: var(--cs-lime); box-shadow: 0 0 16px var(--cs-lime); }

@keyframes orbitSpin { to { transform: rotate(360deg); } }

.cs-marquee {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 20px 0;
    color: #071014;
    background: var(--cs-cyan);
    transform: rotate(-1deg) scale(1.02);
}

.cs-marquee div {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 32px;
    animation: marquee 24s linear infinite;
}

.cs-marquee span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}

.cs-marquee i { font-style: normal; }

@keyframes marquee { to { transform: translateX(-50%); } }

.cs-projects {
    padding: 170px 0 130px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    margin-bottom: 70px;
}

.section-heading .micro-label {
    grid-column: 1 / -1;
}

.section-heading h2,
.cs-profile h2,
.cs-cta h2 {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -.06em;
}

.section-heading h2 em,
.cs-cta h2 em {
    color: var(--cs-cyan);
    font-style: normal;
}

.section-heading > p:last-child {
    max-width: 320px;
    justify-self: end;
    margin: 0;
    color: var(--cs-muted);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.7;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.project-card {
    --accent: var(--cs-cyan);
    position: relative;
    min-height: 390px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--cs-line);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
    transition: transform .35s ease, border-color .35s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--accent), transparent 55%);
}

.project-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    border: 1px solid color-mix(in srgb, var(--accent), transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 80px color-mix(in srgb, var(--accent), transparent 80%);
    transition: transform .5s ease;
}

.project-card:hover::after { transform: scale(1.18); }
.project-card.accent-lime { --accent: var(--cs-lime); }
.project-card.accent-violet { --accent: #a58bff; }
.project-card.accent-orange { --accent: #ff9f68; }

.project-index {
    color: var(--accent);
    font-size: 11px;
}

.project-category {
    margin: 70px 0 12px !important;
    color: var(--accent) !important;
    font-size: 10px !important;
    letter-spacing: .15em;
}

.project-card h3 {
    max-width: 440px;
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.project-card > p {
    max-width: 480px;
    color: var(--cs-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

.project-card > a {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-top: 25px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.tag-row span {
    padding: 7px 10px;
    color: #9eadbe;
    border: 1px solid var(--cs-line);
    border-radius: 99px;
    font-size: 9px;
}

.cs-profile {
    display: grid;
    grid-template-columns: 120px 1fr 300px;
    gap: 60px;
    align-items: center;
    padding: 100px 0 150px;
    border-top: 1px solid var(--cs-line);
}

.profile-number {
    align-self: start;
    color: #354153;
    font-size: 64px;
    font-weight: 200;
}

.profile-copy > p {
    max-width: 670px;
    color: var(--cs-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
}

.profile-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 34px;
}

.profile-facts span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cs-muted);
    font-size: 10px;
}

.profile-facts b {
    color: var(--cs-cyan);
    font-size: 16px;
}

.profile-signal {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    aspect-ratio: 1;
    padding: 26px;
    border: 1px solid var(--cs-line);
    border-radius: 50%;
    animation: orbitSpin 26s linear infinite;
}

.profile-signal span {
    display: grid;
    place-items: center;
    color: var(--cs-muted);
    border: 1px solid var(--cs-line);
    border-radius: 50%;
    font-size: 12px;
}

.profile-signal span:nth-child(odd) { color: var(--cs-cyan); }

.cs-cta {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    overflow: hidden;
    color: #071014;
    background: var(--cs-lime);
}

.cs-cta::after {
    content: "</>";
    position: absolute;
    right: -40px;
    bottom: -100px;
    color: rgba(7,16,20,.08);
    font-size: 340px;
    font-weight: 900;
}

.cs-cta .micro-label { color: #263411; }
.cs-cta h2 { font-size: clamp(56px, 8vw, 110px); }
.cs-cta h2 em { color: #071014; }
.cs-cta .button { margin-top: 38px; color: #fff; background: #071014; }

.cs-footer {
    display: flex;
    justify-content: space-between;
    padding: 34px 0;
    color: #657283;
    font-size: 10px;
}

.cs-footer a:hover { color: var(--cs-cyan); }

/* Laurent */
.site-laurent {
    --la-ink: #172036;
    --la-blue: #1c4cff;
    --la-red: #f05c43;
    --la-cream: #f2eee5;
    --la-paper: #faf8f3;
    --la-line: #c9c4b9;
    color: var(--la-ink);
    background: var(--la-cream);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.site-laurent .pointer-glow {
    background: radial-gradient(circle, rgba(28, 76, 255, .09), transparent 66%);
}

.la-nav {
    position: relative;
    z-index: 10;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(23,32,54,.16);
}

.la-wordmark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -.05em;
}

.la-wordmark span { color: var(--la-red); }

.la-nav nav {
    display: flex;
    gap: 38px;
}

.la-nav nav a {
    position: relative;
    font-size: 12px;
    font-weight: 700;
}

.la-nav nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 2px;
    background: var(--la-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}

.la-nav nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.la-hero {
    position: relative;
    min-height: 760px;
    padding: 60px 0 90px;
}

.la-kicker {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 50px;
    color: var(--la-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
}

.la-kicker i {
    flex: 1;
    height: 1px;
    background: rgba(23,32,54,.16);
}

.la-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}

.la-title h1 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 9.4vw, 150px);
    font-weight: 400;
    line-height: .82;
    letter-spacing: -.075em;
}

.la-title > p {
    max-width: 590px;
    margin: 45px 0 0 8px;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
}

.la-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin: 38px 0 0 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid;
    color: var(--la-blue);
    font-size: 12px;
    font-weight: 800;
}

.la-arrow-link span {
    font-size: 20px;
    transition: transform .25s ease;
}

.la-arrow-link:hover span { transform: translate(4px, 4px); }

.la-visual {
    position: relative;
    min-height: 500px;
}

.sun-disc {
    position: absolute;
    top: 20px;
    right: 20px;
    width: min(28vw, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--la-red);
    box-shadow: inset -30px -20px 70px rgba(111, 24, 15, .14);
}

.route-line {
    position: absolute;
    z-index: 2;
    inset: 75px 20px 80px 0;
    overflow: hidden;
    border: 2px solid var(--la-ink);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(-14deg);
}

.route-line i {
    position: absolute;
    top: 9%;
    right: 18%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--la-cream);
    box-shadow: 0 0 0 6px var(--la-blue);
    animation: laRoute 5s ease-in-out infinite;
}

@keyframes laRoute {
    50% { top: 48%; right: 2%; }
}

.bike {
    position: absolute;
    z-index: 3;
    right: 50px;
    bottom: 70px;
    width: 260px;
    height: 140px;
}

.wheel {
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 100px;
    border: 4px solid var(--la-ink);
    border-radius: 50%;
    animation: wheelSpin 4s linear infinite;
}

.wheel::before,
.wheel::after {
    content: "";
    position: absolute;
    top: 48px;
    left: 6px;
    width: 80px;
    height: 1px;
    background: var(--la-ink);
}

.wheel::after { transform: rotate(90deg); }
.wheel-left { left: 0; }
.wheel-right { right: 0; }

@keyframes wheelSpin { to { transform: rotate(360deg); } }

.bike-frame {
    position: absolute;
    left: 61px;
    bottom: 48px;
    width: 135px;
    height: 62px;
    border: 5px solid var(--la-blue);
    clip-path: polygon(0 100%, 38% 0, 70% 100%, 100% 15%, 90% 9%, 68% 80%, 40% 12%, 12% 100%);
}

.visual-word {
    position: absolute;
    z-index: 4;
    padding: 7px 10px;
    color: var(--la-cream);
    background: var(--la-ink);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
    transform: rotate(-7deg);
}

.word-code { top: 4%; left: 15%; }
.word-music { top: 42%; right: -10px; transform: rotate(6deg); }
.word-road { bottom: 6%; left: 22%; color: var(--la-ink); background: #f2ca41; transform: rotate(2deg); }

.la-scroll-note {
    position: absolute;
    right: 0;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

.la-scroll-note i {
    width: 40px;
    height: 1px;
    background: currentColor;
}

.la-about {
    padding: 130px 0;
    color: var(--la-paper);
    background: var(--la-ink);
}

.la-section-number {
    margin: 0 0 55px;
    color: var(--la-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
}

.la-about .la-section-number { color: #7ca0ff; }

.la-about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 100px;
    align-items: start;
}

.la-about h2,
.la-interests h2,
.la-contact h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 7vw, 96px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.055em;
}

.la-about-grid > div > p {
    margin: 10px 0 0;
    color: #c6cad3;
    font-size: 18px;
    line-height: 1.8;
}

.la-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 55px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.la-mini-stats span {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #8b93a5;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.la-mini-stats strong {
    color: var(--la-paper);
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
}

.la-interests {
    padding: 140px 0 170px;
}

.interest-stack {
    display: grid;
    gap: 22px;
}

.interest-card {
    position: sticky;
    top: 28px;
    min-height: 510px;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
    gap: 100px;
    padding: 52px 64px;
    overflow: hidden;
    border: 1px solid rgba(23,32,54,.15);
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(23,32,54,.12);
}

.interest-card:nth-child(2) { top: 48px; }
.interest-card:nth-child(3) { top: 68px; }
.interest-card.cycling { color: var(--la-paper); background: var(--la-blue); }
.interest-card.music { color: var(--la-ink); background: #f2ca41; }
.interest-card.coding { color: #eff8ed; background: #1d4638; }

.interest-top {
    position: absolute;
    top: 32px;
    right: 38px;
    left: 38px;
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    letter-spacing: .13em;
}

.interest-card > div:nth-child(2) {
    grid-column: 2;
    position: relative;
    z-index: 2;
}

.interest-card h2 { font-size: clamp(58px, 7vw, 100px); }

.interest-card p {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.75;
}

.interest-card a {
    display: inline-block;
    margin-top: 20px;
    padding-bottom: 6px;
    border-bottom: 1px solid;
    font-size: 11px;
    font-weight: 800;
}

.elevation {
    position: absolute;
    right: -40px;
    bottom: -15px;
    left: -40px;
    height: 220px;
    display: flex;
    align-items: end;
    opacity: .2;
}

.elevation i {
    flex: 1;
    height: 25%;
    background: var(--la-paper);
    clip-path: polygon(0 100%, 100% 100%, 50% 0);
}

.elevation i:nth-child(2) { height: 45%; }
.elevation i:nth-child(3) { height: 30%; }
.elevation i:nth-child(4) { height: 70%; }
.elevation i:nth-child(5) { height: 90%; }
.elevation i:nth-child(6) { height: 58%; }
.elevation i:nth-child(7) { height: 80%; }
.elevation i:nth-child(8) { height: 42%; }
.elevation i:nth-child(9) { height: 64%; }

.music-rings {
    position: absolute;
    left: 70px;
    top: 50%;
    width: 270px;
    height: 270px;
    transform: translateY(-42%);
}

.music-rings i {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(23,32,54,.3);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.music-rings i:nth-child(2) { inset: 36px; animation-delay: -.6s; }
.music-rings i:nth-child(3) { inset: 72px; animation-delay: -1.2s; }
.music-rings b {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: Georgia, serif;
    font-size: 80px;
    font-weight: 400;
}

@keyframes ringPulse { 50% { transform: scale(.94); opacity: .55; } }

.code-window {
    position: absolute;
    left: 60px;
    top: 50%;
    width: 330px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 14px;
    background: rgba(3,14,11,.28);
    transform: translateY(-45%) rotate(-5deg);
    box-shadow: 0 30px 60px rgba(0,0,0,.18);
}

.code-window span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    border-radius: 50%;
    background: #ff7e72;
}

.code-window span:nth-child(2) { background: #f2ca41; }
.code-window span:nth-child(3) { background: #67dc9b; }
.code-window p {
    margin: 18px 0 0;
    color: #a8f0ce;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 14px;
}

.la-quote {
    padding: 130px 0;
    text-align: center;
    border-top: 1px solid var(--la-line);
    border-bottom: 1px solid var(--la-line);
}

.la-quote span {
    color: var(--la-red);
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: .5;
}

.la-quote blockquote {
    max-width: 880px;
    margin: 30px auto;
    font-family: Georgia, serif;
    font-size: clamp(38px, 5vw, 68px);
    font-style: italic;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.la-quote p {
    color: #737a88;
    font-size: 11px;
}

.la-contact {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: end;
    padding: 150px 0;
}

.la-contact-button {
    width: 210px;
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--la-paper);
    background: var(--la-red);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    transition: transform .35s ease, border-radius .35s ease;
}

.la-contact-button i { font-size: 25px; font-style: normal; }
.la-contact-button:hover { transform: rotate(5deg) scale(1.05); border-radius: 42% 58% 52% 48%; }

.la-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid var(--la-line);
    font-size: 10px;
}

.la-footer > a:last-child { justify-self: end; }

/* Cornetist */
.site-cornetist {
    --co-bg: #160b13;
    --co-wine: #681d35;
    --co-wine-light: #9d3354;
    --co-gold: #e4b86a;
    --co-cream: #f5ead7;
    --co-muted: #bdacac;
    color: var(--co-cream);
    background: var(--co-bg);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.site-cornetist .pointer-glow {
    background: radial-gradient(circle, rgba(228,184,106,.1), transparent 66%);
}

.co-noise {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .22;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.08) 0 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,.05) 0 1px, transparent 1px);
    background-size: 31px 37px, 41px 47px;
}

.co-nav,
.co-hero,
.co-timeline-section,
.co-footer {
    position: relative;
    z-index: 1;
}

.co-nav {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(228,184,106,.18);
}

.co-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: .17em;
}

.co-logo small {
    color: var(--co-gold);
    font-family: "Helvetica Neue", sans-serif;
    font-size: 7px;
}

.co-monogram {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--co-gold);
    border-radius: 50%;
    color: var(--co-gold);
    font-size: 24px;
    font-style: italic;
}

.co-nav nav {
    display: flex;
    gap: 36px;
}

.co-nav nav a {
    color: var(--co-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: color .25s ease;
}

.co-nav nav a:hover { color: var(--co-gold); }

.co-hero {
    min-height: 780px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
    padding: 90px 0 150px;
}

.co-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 25px;
    color: var(--co-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
}

.co-kicker span {
    width: 26px;
    height: 1px;
    background: var(--co-gold);
}

.co-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(65px, 8.5vw, 126px);
    font-weight: 400;
    line-height: .84;
    letter-spacing: -.065em;
}

.co-hero h1 span { display: block; }
.co-hero h1 span:nth-child(2) { color: var(--co-gold); font-style: italic; transform: translateX(9%); }

.co-hero-copy > p:not(.co-kicker) {
    max-width: 650px;
    margin: 40px 0;
    color: var(--co-muted);
    font-size: 18px;
    line-height: 1.75;
}

.co-button {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 17px 22px;
    color: var(--co-bg);
    background: var(--co-gold);
    border: 1px solid var(--co-gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: transform .3s ease, box-shadow .3s ease;
}

.co-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(228,184,106,.18);
}

.co-instrument {
    position: relative;
    min-height: 510px;
    transform: rotate(-6deg);
}

.co-instrument::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157,51,84,.46), transparent 67%);
    transform: translate(-50%, -50%);
    filter: blur(20px);
}

.brass-bell {
    position: absolute;
    top: 95px;
    right: 30px;
    width: 250px;
    height: 285px;
    border: 3px solid var(--co-gold);
    border-radius: 48% 52% 50% 50% / 20% 20% 80% 80%;
    background:
        linear-gradient(110deg, rgba(255,255,255,.25), transparent 26%, rgba(228,184,106,.18) 60%, rgba(255,255,255,.12)),
        #b77a26;
    clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%);
    box-shadow: inset 10px 0 40px rgba(255,242,196,.28), inset -25px -8px 50px rgba(61,21,13,.5), 0 30px 80px rgba(0,0,0,.35);
}

.brass-bell::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 6%;
    height: 22%;
    border: 2px solid rgba(255,240,185,.5);
    border-radius: 50%;
}

.brass-body {
    position: absolute;
    z-index: 2;
    top: 42px;
    right: 210px;
    width: 220px;
    height: 110px;
    border: 8px solid var(--co-gold);
    border-right: 0;
    border-radius: 55px 0 0 55px;
    box-shadow: inset 0 2px #fff3c3;
}

.brass-body::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -150px;
    width: 180px;
    height: 180px;
    border: 10px solid var(--co-gold);
    border-left-color: transparent;
    border-radius: 50%;
}

.brass-body i {
    position: absolute;
    right: 10px;
    bottom: -45px;
    width: 18px;
    height: 100px;
    border-radius: 8px;
    background: linear-gradient(90deg, #8d571e, var(--co-gold), #fff0bd, #8d571e);
}

.brass-body i:nth-child(2) { right: 45px; height: 115px; }
.brass-body i:nth-child(3) { right: 80px; height: 98px; }

.sound-ring {
    position: absolute;
    right: -30px;
    top: 60px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(228,184,106,.25);
    border-radius: 50%;
    animation: soundPulse 3.6s ease-out infinite;
}

.ring-b { animation-delay: -1.2s; }
.ring-c { animation-delay: -2.4s; }

@keyframes soundPulse {
    from { transform: scale(.55); opacity: .8; }
    to { transform: scale(1.35); opacity: 0; }
}

.co-instrument > p {
    position: absolute;
    right: -10px;
    bottom: 30px;
    margin: 0;
    color: rgba(228,184,106,.14);
    font-family: Georgia, serif;
    font-size: 90px;
    letter-spacing: .1em;
}

.co-wave {
    position: absolute;
    right: 0;
    bottom: 58px;
    left: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: .55;
}

.co-wave i {
    width: 1px;
    height: 20%;
    background: var(--co-gold);
    animation: wave 1.8s ease-in-out infinite;
}

.co-wave i:nth-child(3n) { animation-delay: -.3s; }
.co-wave i:nth-child(4n) { animation-delay: -.7s; }
.co-wave i:nth-child(5n) { animation-delay: -1.1s; }

@keyframes wave { 50% { height: 92%; } }

.co-profile {
    position: relative;
    z-index: 2;
    padding: 140px 0;
    color: var(--co-bg);
    background: var(--co-cream);
}

.co-profile-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 110px;
    align-items: center;
}

.co-profile-mark {
    position: relative;
    min-height: 350px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(22,11,19,.17);
    border-radius: 50% 50% 44% 56%;
    background: rgba(255,255,255,.25);
}

.co-profile-mark::before,
.co-profile-mark::after {
    content: "";
    position: absolute;
    inset: 26px;
    border: 1px solid rgba(104,29,53,.28);
    border-radius: 46% 54% 50% 50%;
    transform: rotate(12deg);
}

.co-profile-mark::after { inset: 54px; transform: rotate(-17deg); }
.co-profile-mark span { color: var(--co-wine); font-family: Georgia, serif; font-size: 100px; }
.co-profile-mark p { position: absolute; right: -20px; bottom: 20px; margin: 0; font-family: Georgia, serif; font-size: 22px; font-style: italic; }

.co-section-label {
    margin: 0 0 25px;
    color: var(--co-wine-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
}

.co-profile h2,
.co-timeline-heading h2,
.co-contact h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.055em;
}

.co-profile-grid > div:last-child > p:not(.co-section-label) {
    max-width: 670px;
    color: #6d5b5e;
    font-size: 18px;
    line-height: 1.8;
}

.co-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.co-pill-row span {
    padding: 9px 14px;
    border: 1px solid rgba(104,29,53,.25);
    border-radius: 99px;
    color: var(--co-wine);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.co-timeline-section {
    padding: 150px 0 180px;
}

.co-timeline-heading {
    max-width: 850px;
    margin-bottom: 90px;
}

.co-timeline-heading > p:last-child {
    max-width: 670px;
    color: var(--co-muted);
    font-size: 17px;
    line-height: 1.75;
}

.co-timeline {
    position: relative;
}

.co-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 240px;
    width: 1px;
    background: linear-gradient(var(--co-gold), rgba(228,184,106,.08));
}

.timeline-entry {
    display: grid;
    grid-template-columns: 190px 100px 1fr;
    gap: 0;
    margin-bottom: 36px;
}

.timeline-date {
    padding-top: 35px;
    text-align: right;
}

.timeline-date strong,
.timeline-date span {
    display: block;
}

.timeline-date strong {
    color: var(--co-gold);
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 400;
}

.timeline-date span {
    margin-top: 7px;
    color: #84747a;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.timeline-dot {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 45px;
}

.timeline-dot i {
    position: relative;
    z-index: 2;
    width: 13px;
    height: 13px;
    border: 3px solid var(--co-bg);
    border-radius: 50%;
    background: var(--co-gold);
    box-shadow: 0 0 0 1px var(--co-gold), 0 0 24px rgba(228,184,106,.4);
}

.timeline-card {
    padding: 35px 40px;
    border: 1px solid rgba(228,184,106,.16);
    border-radius: 3px;
    background: linear-gradient(120deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.timeline-card:hover {
    transform: translateX(8px);
    border-color: rgba(228,184,106,.4);
    background: linear-gradient(120deg, rgba(104,29,53,.26), rgba(255,255,255,.015));
}

.timeline-meta {
    display: flex;
    gap: 14px;
    color: #8f7d83;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.timeline-meta span:first-child {
    color: var(--co-gold);
}

.timeline-card h3 {
    margin: 20px 0 6px;
    font-family: Georgia, serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
}

.timeline-card .ensemble {
    margin: 0 0 22px;
    color: var(--co-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.timeline-card > p:not(.ensemble) {
    max-width: 700px;
    color: var(--co-muted);
    line-height: 1.7;
}

.role {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(228,184,106,.12);
    font-size: 10px;
}

.role span { color: #817178; text-transform: uppercase; letter-spacing: .08em; }
.role strong { color: var(--co-cream); }

.co-contact {
    position: relative;
    z-index: 2;
    padding: 130px 0;
    overflow: hidden;
    color: var(--co-bg);
    background: var(--co-gold);
}

.co-contact::after {
    content: "♪";
    position: absolute;
    right: 6%;
    top: -80px;
    color: rgba(22,11,19,.1);
    font-family: Georgia, serif;
    font-size: 420px;
}

.co-contact .co-section-label { color: var(--co-wine); }
.co-contact h2 em { color: var(--co-wine); font-style: italic; }
.co-contact p:not(.co-section-label) { font-size: 17px; }
.co-button.light { margin-top: 25px; color: var(--co-cream); background: var(--co-bg); border-color: var(--co-bg); }

.co-footer {
    display: flex;
    justify-content: space-between;
    padding: 36px 0;
    color: #7e6d74;
    font-size: 9px;
    letter-spacing: .12em;
}

.co-footer a:hover { color: var(--co-gold); }

/* Admin */
.admin-body {
    --ad-bg: #f5f6f8;
    --ad-panel: #fff;
    --ad-ink: #172033;
    --ad-muted: #667085;
    --ad-line: #dfe3e8;
    --ad-accent: #1967ff;
    --ad-accent-soft: #e9f0ff;
    color: var(--ad-ink);
    background: var(--ad-bg);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.admin-theme-codeschlau { --ad-accent: #087d8a; --ad-accent-soft: #e1f7f8; }
.admin-theme-laurent { --ad-accent: #1c4cff; --ad-accent-soft: #e8edff; }
.admin-theme-cornetist { --ad-accent: #8b2949; --ad-accent-soft: #f8e8ed; }

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 26px;
    border-bottom: 1px solid var(--ad-line);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.admin-brand > span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: var(--ad-accent);
    border-radius: 9px;
    font-size: 12px;
    font-weight: 900;
}

.admin-brand strong { font-size: 15px; }

.admin-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--ad-muted);
    font-size: 12px;
}

.admin-actions form { margin: 0; }
.admin-actions button {
    padding: 9px 13px;
    color: var(--ad-muted);
    border: 1px solid var(--ad-line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: calc(100vh - 72px);
}

.admin-sidebar {
    position: sticky;
    top: 72px;
    align-self: start;
    height: calc(100vh - 72px);
    padding: 28px 18px;
    border-right: 1px solid var(--ad-line);
    background: #fff;
}

.admin-sidebar > p {
    margin: 0 10px 12px;
    color: #98a0ad;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.admin-sidebar > a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0;
    padding: 11px;
    border-radius: 10px;
    transition: background .2s ease;
}

.admin-sidebar > a:hover,
.admin-sidebar > a.active { background: var(--ad-accent-soft); }

.admin-sidebar > a > span:first-child {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--ad-accent);
    border: 1px solid color-mix(in srgb, var(--ad-accent), transparent 68%);
    border-radius: 9px;
    font-size: 11px;
    font-weight: 900;
}

.admin-sidebar > a > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.admin-sidebar strong { font-size: 12px; }
.admin-sidebar small { color: var(--ad-muted); font-size: 9px; }

.admin-sidebar nav {
    display: grid;
    gap: 4px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--ad-line);
}

.admin-sidebar nav a {
    padding: 9px 12px;
    color: var(--ad-muted);
    border-radius: 8px;
    font-size: 11px;
}

.admin-sidebar nav a:hover { color: var(--ad-accent); background: var(--ad-accent-soft); }

.admin-main {
    width: min(1060px, calc(100% - 48px));
    margin: 0 auto;
    padding: 44px 0 100px;
}

.admin-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.admin-heading p,
.admin-panel-heading p {
    margin: 0 0 8px;
    color: var(--ad-accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}

.admin-heading h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -.04em;
}

.publish-state {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #25774e;
    border: 1px solid #bce4cf;
    border-radius: 99px;
    background: #edfaf3;
    font-size: 10px;
    font-weight: 700;
}

.publish-state i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #31a36b;
}

.admin-alert {
    margin-bottom: 18px;
    padding: 13px 16px;
    border: 1px solid;
    border-radius: 10px;
    font-size: 12px;
}

.admin-alert.success { color: #146b43; border-color: #b7e0ca; background: #ecf9f2; }
.admin-alert.error { color: #9d2f36; border-color: #ecc3c6; background: #fff0f1; }

.admin-panel {
    margin-bottom: 24px;
    padding: 28px;
    border: 1px solid var(--ad-line);
    border-radius: 16px;
    background: var(--ad-panel);
    box-shadow: 0 7px 24px rgba(31,42,61,.04);
    scroll-margin-top: 100px;
}

.admin-panel-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ad-line);
}

.admin-panel-heading h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -.025em;
}

.admin-panel-heading > span {
    color: var(--ad-muted);
    font-size: 10px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.field-grid label {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field-grid label > span {
    color: #4a5568;
    font-size: 10px;
    font-weight: 700;
}

.field-grid input,
.field-grid textarea,
.field-grid select,
.login-form input {
    width: 100%;
    padding: 12px 13px;
    color: var(--ad-ink);
    border: 1px solid #d5dae1;
    border-radius: 9px;
    outline: none;
    background: #fbfcfd;
    font-size: 12px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field-grid textarea {
    resize: vertical;
    line-height: 1.55;
}

.field-grid input:focus,
.field-grid textarea:focus,
.field-grid select:focus,
.login-form input:focus {
    border-color: var(--ad-accent);
    background: #fff;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--ad-accent), transparent 87%);
}

.field-wide { grid-column: 1 / -1; }

.field-grid .checkbox {
    flex-direction: row;
    align-items: center;
    align-self: center;
    padding-top: 18px;
}

.field-grid .checkbox input {
    width: 17px;
    height: 17px;
    accent-color: var(--ad-accent);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--ad-line);
}

.form-footer > span { color: var(--ad-muted); font-size: 10px; }

.admin-primary,
.admin-danger {
    padding: 11px 15px;
    border: 0;
    border-radius: 9px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
}

.admin-primary { color: #fff; background: var(--ad-accent); }
.admin-danger { color: #a12f39; background: #fff0f1; }

.admin-entry {
    margin: 10px 0;
    border: 1px solid var(--ad-line);
    border-radius: 12px;
    background: #fff;
}

.admin-entry > summary {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 16px;
    list-style: none;
    cursor: pointer;
}

.admin-entry > summary::-webkit-details-marker { display: none; }
.admin-entry > summary > span:nth-child(2) { display: flex; flex-direction: column; gap: 4px; }
.admin-entry > summary strong { font-size: 12px; }
.admin-entry > summary small { color: var(--ad-muted); font-size: 9px; }
.admin-entry > summary > span:last-child { color: var(--ad-muted); font-size: 9px; }

.entry-accent {
    width: 10px;
    height: 38px;
    border-radius: 99px;
    background: #32cad5;
}

.entry-accent.accent-lime { background: #94c936; }
.entry-accent.accent-violet { background: #8b6de0; }
.entry-accent.accent-orange { background: #eb8352; }

.entry-date {
    display: grid;
    place-items: center;
    min-width: 44px;
    height: 38px;
    color: var(--ad-accent);
    border-radius: 8px;
    background: var(--ad-accent-soft);
    font-size: 10px;
    font-weight: 900;
}

.entry-status {
    padding: 6px 9px;
    border-radius: 99px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.entry-status.live { color: #22734b; background: #e8f8ef; }
.entry-status.draft { color: #786b4f; background: #f5f0e5; }

.admin-entry .admin-form {
    padding: 22px;
    border-top: 1px solid var(--ad-line);
    background: #fafbfc;
    border-radius: 0 0 12px 12px;
}

.create-entry > summary {
    grid-template-columns: auto 1fr;
    color: var(--ad-accent);
}

.create-entry > summary > span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--ad-accent-soft);
    font-size: 17px;
}

.hidden-form { display: none; }

.login-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 12%, var(--ad-accent-soft), transparent 28%),
        radial-gradient(circle at 90% 88%, color-mix(in srgb, var(--ad-accent), transparent 88%), transparent 26%),
        #f4f6f9;
}

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 50px 20px;
}

.login-back {
    position: absolute;
    top: 28px;
    left: 30px;
    color: var(--ad-muted);
    font-size: 11px;
}

.login-card {
    width: min(450px, 100%);
    padding: 36px;
    border: 1px solid var(--ad-line);
    border-radius: 20px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 30px 90px rgba(31,42,61,.12);
}

.login-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.login-symbol {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #fff;
    border-radius: 12px;
    background: var(--ad-accent);
    font-size: 13px;
    font-weight: 900;
}

.login-brand div { display: flex; flex-direction: column; gap: 3px; }
.login-brand small { color: var(--ad-muted); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.login-brand strong { font-size: 15px; }

.login-card h1 {
    margin: 38px 0 8px;
    font-size: 34px;
    letter-spacing: -.045em;
}

.login-card > p {
    margin: 0;
    color: var(--ad-muted);
    font-size: 12px;
    line-height: 1.6;
}

.login-card .admin-alert { margin-top: 18px; }

.login-form {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.login-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.login-form label span {
    color: #4a5568;
    font-size: 10px;
    font-weight: 700;
}

.login-form button {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    padding: 13px 15px;
    color: #fff;
    border: 0;
    border-radius: 9px;
    background: var(--ad-accent);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
}

.login-security {
    margin-top: 22px !important;
    padding-top: 18px;
    border-top: 1px solid var(--ad-line);
    font-size: 9px !important;
    text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
    .cs-hero,
    .la-hero-grid,
    .la-about-grid,
    .co-hero,
    .co-profile-grid {
        grid-template-columns: 1fr;
    }

    .cs-hero { gap: 60px; padding-top: 60px; }
    .cs-console { width: min(620px, 100%); }
    .project-grid { grid-template-columns: 1fr; }
    .cs-profile { grid-template-columns: 90px 1fr; }
    .profile-signal { display: none; }

    .la-visual { min-height: 430px; }
    .sun-disc { width: 330px; }
    .la-about-grid { gap: 50px; }
    .interest-card { grid-template-columns: .8fr 1.2fr; gap: 50px; }
    .la-contact { grid-template-columns: 1fr auto; }

    .co-hero { padding-top: 60px; }
    .co-instrument { width: min(560px, 100%); margin-inline: auto; }
    .co-profile-grid { gap: 70px; }
    .co-profile-mark { width: min(360px, 100%); }

    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: static;
        height: auto;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 14px 20px;
        border-right: 0;
        border-bottom: 1px solid var(--ad-line);
    }
    .admin-sidebar > p,
    .admin-sidebar nav { display: none; }
    .admin-sidebar > a { min-width: 155px; }
}

@media (max-width: 700px) {
    .shell { width: min(100% - 32px, 1180px); }
    .shell-wide { width: min(100% - 32px, 1320px); }
    .pointer-glow { display: none; }

    .cs-nav,
    .la-nav,
    .co-nav { height: 78px; }
    .cs-nav nav a:not(.nav-action),
    .la-nav nav a:not(:last-child),
    .co-nav nav a:not(:last-child) { display: none; }
    .cs-nav nav,
    .la-nav nav,
    .co-nav nav { gap: 0; }
    .cs-nav .nav-action { padding: 10px 12px; }

    .cs-hero { min-height: 0; padding: 80px 0 110px; }
    .cs-hero h1 { font-size: clamp(48px, 15vw, 72px); }
    .hero-actions { align-items: flex-start; flex-direction: column; }
    .console-body { padding: 30px 22px; font-size: 12px; }
    .orbit-two { display: none; }
    .cs-projects { padding: 120px 0 90px; }
    .section-heading { grid-template-columns: 1fr; gap: 25px; }
    .section-heading > p:last-child { justify-self: start; }
    .project-card { min-height: 360px; padding: 27px; }
    .cs-profile { grid-template-columns: 1fr; gap: 25px; padding: 80px 0 110px; }
    .profile-number { font-size: 38px; }
    .cs-cta { padding: 90px 0; }

    .la-nav nav a:last-child { display: block; }
    .la-hero { min-height: 0; padding-top: 50px; }
    .la-title h1 { font-size: clamp(68px, 22vw, 104px); }
    .la-title > p { margin-left: 0; }
    .la-visual { min-height: 390px; transform: scale(.85); transform-origin: center top; }
    .sun-disc { right: 0; width: 300px; }
    .bike { right: 0; transform: scale(.8); transform-origin: right bottom; }
    .la-scroll-note { display: none; }
    .la-about { padding: 90px 0; }
    .la-mini-stats { gap: 10px; }
    .la-interests { padding: 100px 0; }
    .interest-card {
        position: relative;
        top: auto !important;
        min-height: 620px;
        display: flex;
        align-items: flex-end;
        padding: 32px 26px;
    }
    .interest-card > div:nth-child(2) { grid-column: auto; }
    .interest-card h2 { font-size: 60px; }
    .elevation { bottom: 260px; }
    .music-rings,
    .code-window { top: 170px; left: 50%; transform: translate(-50%, -50%) scale(.82); }
    .la-quote { padding: 90px 0; }
    .la-contact { grid-template-columns: 1fr; padding: 100px 0; }
    .la-contact-button { width: 180px; height: 180px; }
    .la-footer { grid-template-columns: 1fr auto; gap: 20px; }
    .la-footer > span { display: none; }

    .co-logo > span:last-child { display: none; }
    .co-hero { min-height: 0; padding: 80px 0 150px; }
    .co-hero h1 { font-size: clamp(62px, 19vw, 92px); }
    .co-instrument { min-height: 420px; transform: scale(.76) rotate(-6deg); transform-origin: center center; }
    .co-profile { padding: 90px 0; }
    .co-profile-mark { min-height: 300px; }
    .co-timeline-section { padding: 110px 0; }
    .co-timeline::before { left: 15px; }
    .timeline-entry { grid-template-columns: 30px 1fr; }
    .timeline-date { grid-column: 2; padding: 0 0 14px; text-align: left; }
    .timeline-dot { grid-column: 1; grid-row: 1 / span 2; justify-content: flex-start; padding: 12px 0 0 9px; }
    .timeline-card { grid-column: 2; padding: 26px 22px; }
    .role { flex-direction: column; gap: 7px; }
    .co-contact { padding: 90px 0; }

    .admin-topbar { padding: 0 16px; }
    .admin-actions > a { display: none; }
    .admin-main { width: min(100% - 24px, 1060px); padding-top: 28px; }
    .admin-heading { align-items: start; flex-direction: column; }
    .admin-panel { padding: 20px 16px; border-radius: 12px; }
    .admin-panel-heading { align-items: start; flex-direction: column; }
    .field-grid { grid-template-columns: 1fr; }
    .field-wide { grid-column: auto; }
    .form-footer { align-items: stretch; flex-direction: column; }
    .admin-primary,
    .admin-danger { width: 100%; }
    .admin-entry > summary { grid-template-columns: auto 1fr auto; }
    .admin-entry > summary > span:last-child { display: none; }
    .login-card { padding: 28px 22px; }
}

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