/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* App shell — the single dark stage every page stands on.
   Master SERBRES design tokens (--silver, --obsidian, …) live in
   wwwroot/themes/serbres.css and are inherited app-wide from here. */
.app-shell[b-3pwfuy7a9i] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* clip (not hidden) so stray absolute popovers can never widen the
       page on mobile; clip keeps position:sticky working */
    overflow-x: clip;
    background:
        radial-gradient(120% 55% at 50% -10%, rgba(226, 230, 240, 0.05), transparent 60%),
        linear-gradient(180deg, #0b0b0d 0%, #08080a 100%);
    color: var(--ink-white);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.app-main[b-3pwfuy7a9i] {
    flex: 1 0 auto;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3.5vw, 2.75rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
}

/* Sensible defaults for plain page content (placeholder brand pages, etc.)
   so anything that isn't bespoke still reads on the dark stage. */
.app-main[b-3pwfuy7a9i]  h1 {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--ink-white);
}
.app-main[b-3pwfuy7a9i]  p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ink-dim);
}
.app-main[b-3pwfuy7a9i]  a {
    color: var(--silver);
    text-underline-offset: 3px;
}

#blazor-error-ui[b-3pwfuy7a9i] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-3pwfuy7a9i] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/SerbresFooter.razor.rz.scp.css */
.site-footer[b-evtxa0bv97] {
    flex-shrink: 0;
    border-top: 1px solid rgba(199, 203, 210, 0.16);
    background: linear-gradient(180deg, rgba(20, 20, 23, 0.6), rgba(8, 8, 10, 0.9));
}

.cols[b-evtxa0bv97] {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1.6fr 1fr 1fr;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 4vw, 3rem) 1.5rem;
}

.brandcol[b-evtxa0bv97] { max-width: 34ch; }

.f-brand[b-evtxa0bv97] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}
.f-crest[b-evtxa0bv97] {
    width: 26px;
    height: 26px;
    background: linear-gradient(160deg, #fafbfc, #c2c6cd 48%, #82868f 80%, #d6d9de);
    -webkit-mask: url("/brands/serbres-logo.svg") center / contain no-repeat;
    mask: url("/brands/serbres-logo.svg") center / contain no-repeat;
}
.f-name[b-evtxa0bv97] {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--silver-bright);
    padding-right: 0.24em;
}
.f-intro[b-evtxa0bv97] {
    margin: 0.9rem 0 0;
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--ink-dim);
}

.col[b-evtxa0bv97] { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; }
.col-h[b-evtxa0bv97] {
    margin: 0 0 0.3rem;
    font-family: 'Cinzel', serif;
    font-size: 0.66rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--pewter);
}
.linkcol a[b-evtxa0bv97] {
    font-size: 1rem;
    color: var(--ink-dim);
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}
.linkcol a:hover[b-evtxa0bv97] {
    color: var(--silver-bright);
    padding-left: 0.25rem;
}

/* ---- Connect: social menus that reveal their account(s) ---- */
.connectcol[b-evtxa0bv97] { overflow: visible; }
.social[b-evtxa0bv97] { position: relative; }
.social-trigger[b-evtxa0bv97] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: none;
    border: 0;
    padding: 0.15rem 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink-dim);
    text-decoration: none;
    transition: color 0.25s ease;
}
.social:hover .social-trigger[b-evtxa0bv97],
.social:focus-within .social-trigger[b-evtxa0bv97] {
    color: var(--silver-bright);
}
.social-trigger svg[b-evtxa0bv97] {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}
.social-trigger .caret[b-evtxa0bv97] {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
}
.social:hover .caret[b-evtxa0bv97],
.social:focus-within .caret[b-evtxa0bv97] {
    transform: rotate(180deg);
}

.social-pop[b-evtxa0bv97] {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 0.55rem;
    width: min(246px, 88vw);
    background: rgba(13, 13, 16, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(199, 203, 210, 0.18);
    border-radius: 12px;
    box-shadow: 0 -18px 44px -18px rgba(0, 0, 0, 0.85);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 20;
}
/* hover bridge so reaching down into the popover doesn't close it */
.social-pop[b-evtxa0bv97]::after {
    content: "";
    position: absolute;
    bottom: -0.55rem;
    left: 0;
    right: 0;
    height: 0.55rem;
}
.social:hover .social-pop[b-evtxa0bv97],
.social:focus-within .social-pop[b-evtxa0bv97] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.pop-item[b-evtxa0bv97] {
    display: block;
    padding: 0.6rem 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(199, 203, 210, 0.07);
    transition: background 0.2s ease;
}
.pop-item:last-child[b-evtxa0bv97] { border-bottom: 0; }
.pop-item:hover[b-evtxa0bv97] { background: rgba(199, 203, 210, 0.08); }
.pop-name[b-evtxa0bv97] {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--silver-bright);
}
.pop-detail[b-evtxa0bv97] {
    display: block;
    margin-top: 0.12rem;
    font-size: 0.82rem;
    color: var(--ink-dim);
    word-break: break-all;
}

/* closing keyline */
.keyline[b-evtxa0bv97] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    max-width: 1120px;
    margin: 0.5rem auto 0;
    padding: 0 clamp(1rem, 4vw, 3rem);
}
.keyline .rule[b-evtxa0bv97] {
    height: 1px;
    flex: 1 1 auto;
    max-width: 360px;
    background: linear-gradient(90deg, transparent, rgba(199, 203, 210, 0.4), transparent);
}
.keyline .lozenge[b-evtxa0bv97] {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--silver-bright), var(--pewter));
    box-shadow: 0 0 10px rgba(242, 244, 247, 0.4);
}

.legal[b-evtxa0bv97] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.2rem clamp(1rem, 4vw, 3rem) 2rem;
    font-size: 0.86rem;
    color: var(--pewter);
}
.legal-mark[b-evtxa0bv97] {
    font-family: 'Cinzel', serif;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .cols[b-evtxa0bv97] { grid-template-columns: 1fr 1fr; }
    .brandcol[b-evtxa0bv97] { grid-column: 1 / -1; }
    .legal[b-evtxa0bv97] { justify-content: center; text-align: center; }
    /* Connect sits in the right column — hang its popovers from the right
       edge so they never push the page wider than the viewport */
    .social-pop[b-evtxa0bv97] { left: auto; right: 0; }
}
/* /Components/Layout/SerbresHeader.razor.rz.scp.css */
.site-header[b-9q4tbr428c] {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 11, 13, 0.72);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border-bottom: 1px solid rgba(199, 203, 210, 0.16);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
/* slid out of view while scrolling down; returns on scroll up (see header-scroll.js) */
.site-header.is-hidden[b-9q4tbr428c] { transform: translateY(-100%); }

@media (prefers-reduced-motion: reduce) {
    .site-header[b-9q4tbr428c] { transition: none; }
}

/* a hair-thin Doric triglyph frieze pinned under the bar */
.frieze[b-9q4tbr428c] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background:
        repeating-linear-gradient(90deg,
            rgba(199, 203, 210, 0.55) 0 2px,
            transparent 2px 5px,
            rgba(199, 203, 210, 0.55) 5px 7px,
            transparent 7px 44px);
    opacity: 0.45;
}

.bar[b-9q4tbr428c] {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 3vw, 2.5rem);
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.7rem clamp(1rem, 4vw, 3rem);
}

/* ---- brand lockup ---- */
.brand[b-9q4tbr428c] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex: 0 0 auto;
}
.brand-crest[b-9q4tbr428c] {
    width: 30px;
    height: 30px;
    background: linear-gradient(160deg, #fafbfc, #c2c6cd 48%, #82868f 80%, #d6d9de);
    -webkit-mask: url("/brands/serbres-logo.svg") center / contain no-repeat;
    mask: url("/brands/serbres-logo.svg") center / contain no-repeat;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
    transition: transform 0.4s ease;
}
.brand:hover .brand-crest[b-9q4tbr428c] { transform: translateY(-1px) scale(1.04); }
.brand-name[b-9q4tbr428c] {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff, #c8ccd3 60%, #9a9ea7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 0.26em;
}

/* ---- nav ---- */
.nav[b-9q4tbr428c] {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 2.4vw, 1.9rem);
    margin-left: auto;
    overflow: visible;
}

/* NavLink renders its own <a>, so reach it with ::deep */
.nav[b-9q4tbr428c]  .nav-link {
    position: relative;
    flex: 0 0 auto;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink-dim);
    padding: 0.35rem 0;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.nav[b-9q4tbr428c]  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--silver), transparent);
    transform: scaleX(0);
    transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav[b-9q4tbr428c]  .nav-link:hover { color: var(--silver-bright); }
.nav[b-9q4tbr428c]  .nav-link:hover::after { transform: scaleX(1); }

/* active-page indicator */
.nav[b-9q4tbr428c]  .nav-link.active {
    color: var(--silver-bright);
}
.nav[b-9q4tbr428c]  .nav-link.active::after { transform: scaleX(1); }

/* ---- Brands dropdown (CSS-only, hover + focus) ---- */
.nav-item.brands[b-9q4tbr428c] {
    position: relative;
    display: flex;
    align-items: center;
}
.menu-trigger[b-9q4tbr428c] {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    background: none;
    border: 0;
    cursor: pointer;
    position: relative;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-dim);
    padding: 0.35rem 0;
    transition: color 0.3s ease;
}
.menu-trigger[b-9q4tbr428c]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--silver), transparent);
    transform: scaleX(0);
    transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.menu-trigger .caret[b-9q4tbr428c] {
    font-size: 0.62em;
    transition: transform 0.3s ease;
}
.brands:hover .menu-trigger[b-9q4tbr428c],
.brands:focus-within .menu-trigger[b-9q4tbr428c] {
    color: var(--silver-bright);
}
.brands:hover .menu-trigger[b-9q4tbr428c]::after,
.brands:focus-within .menu-trigger[b-9q4tbr428c]::after {
    transform: scaleX(1);
}
.brands:hover .caret[b-9q4tbr428c],
.brands:focus-within .caret[b-9q4tbr428c] {
    transform: rotate(180deg);
}

.menu[b-9q4tbr428c] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.7rem;
    width: 272px;
    background: rgba(13, 13, 16, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(199, 203, 210, 0.18);
    border-radius: 12px;
    box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.85);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 60;
}
/* hover bridge across the gap so the menu doesn't close mid-reach */
.menu[b-9q4tbr428c]::before {
    content: "";
    position: absolute;
    top: -0.7rem;
    left: 0;
    right: 0;
    height: 0.7rem;
}
.brands:hover .menu[b-9q4tbr428c],
.brands:focus-within .menu[b-9q4tbr428c] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.menu-item[b-9q4tbr428c] {
    display: block;
    padding: 0.8rem 1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(199, 203, 210, 0.07);
    transition: background 0.2s ease;
}
.menu-item:last-child[b-9q4tbr428c] { border-bottom: 0; }
.menu-item:hover[b-9q4tbr428c] { background: rgba(199, 203, 210, 0.08); }
.mi-name[b-9q4tbr428c] {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: var(--silver-bright);
}
.mi-tag[b-9q4tbr428c] {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.92rem;
    font-style: italic;
    color: var(--ink-dim);
}

/* the "about me" presence indicator — a quiet live pulse */
.nav[b-9q4tbr428c]  .nav-about {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
}
.nav[b-9q4tbr428c]  .live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--silver-bright);
    box-shadow: 0 0 6px rgba(242, 244, 247, 0.8);
    animation: hdr-pulse-b-9q4tbr428c 2.6s ease-out infinite;
}
@keyframes hdr-pulse-b-9q4tbr428c {
    0% { box-shadow: 0 0 0 0 rgba(242, 244, 247, 0.55); }
    70% { box-shadow: 0 0 0 7px rgba(242, 244, 247, 0); }
    100% { box-shadow: 0 0 0 0 rgba(242, 244, 247, 0); }
}

/* ---- connect ---- */
.connect[b-9q4tbr428c] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex: 0 0 auto;
    padding-left: 0.4rem;
    border-left: 1px solid rgba(199, 203, 210, 0.16);
}
.connect a[b-9q4tbr428c] {
    color: var(--pewter);
    line-height: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}
.connect a:hover[b-9q4tbr428c] { color: var(--silver-bright); transform: translateY(-1px); }
.connect svg[b-9q4tbr428c] { width: 19px; height: 19px; }

@media (prefers-reduced-motion: reduce) {
    .nav[b-9q4tbr428c]  .live { animation: none; }
}

@media (max-width: 720px) {
    .connect[b-9q4tbr428c] { display: none; }
    .bar[b-9q4tbr428c] { flex-wrap: wrap; row-gap: 0.5rem; }
    .nav[b-9q4tbr428c] {
        overflow: visible;
        flex-wrap: wrap;
        width: 100%;
        margin-left: 0;
        column-gap: 1.4rem;
        row-gap: 0.5rem;
    }
    .menu[b-9q4tbr428c] { right: auto; left: 0; width: min(272px, 80vw); }
}
@media (max-width: 560px) {
    .brand-name[b-9q4tbr428c] { display: none; }
}
/* /Components/Pages/About.razor.rz.scp.css */
.about[b-xefukk9mss] {
    max-width: 860px;
    margin: 0 auto;
    color: var(--ink-white);
}

.eyebrow[b-xefukk9mss] {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--pewter);
}

/* ---- the presence indicator ---- */
.status-row[b-xefukk9mss] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.1rem 0 0;
}
.li-link[b-xefukk9mss] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(199, 203, 210, 0.25);
    border-radius: 999px;
    background: rgba(199, 203, 210, 0.06);
    color: var(--ink-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.li-link svg[b-xefukk9mss] { width: 16px; height: 16px; }
.li-link:hover[b-xefukk9mss] {
    color: var(--silver-bright);
    border-color: var(--silver);
    background: rgba(199, 203, 210, 0.12);
}
.status[b-xefukk9mss] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    padding: 0.4rem 0.9rem 0.4rem 0.7rem;
    border: 1px solid rgba(199, 203, 210, 0.25);
    border-radius: 999px;
    background: rgba(199, 203, 210, 0.06);
    font-size: 0.92rem;
    color: var(--ink-white);
}
.status-dot[b-xefukk9mss] {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--silver-bright);
    box-shadow: 0 0 8px rgba(242, 244, 247, 0.9);
}
.status-dot[b-xefukk9mss]::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(242, 244, 247, 0.5);
    animation: ab-ping-b-xefukk9mss 2.4s ease-out infinite;
}
.status-label[b-xefukk9mss] {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pewter);
}
@keyframes ab-ping-b-xefukk9mss {
    0% { transform: scale(0.7); opacity: 0.9; }
    80%, 100% { transform: scale(1.9); opacity: 0; }
}

/* ---- hero: oversized type + silver cameo portrait ---- */
.hero[b-xefukk9mss] {
    margin: 1.9rem 0 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.2rem);
}
.hero-text[b-xefukk9mss] { min-width: 0; }

.hi-greet[b-xefukk9mss] {
    margin: 0 0 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.25rem, 2.8vw, 1.85rem);
    letter-spacing: 0.01em;
    color: var(--silver);
}

.hi[b-xefukk9mss] {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Cinzel', serif;
}
.hi-lead[b-xefukk9mss] {
    align-self: flex-start;
    margin-bottom: 0.5rem;
    padding: 0.18rem 0.7rem;
    border: 1px solid rgba(199, 203, 210, 0.28);
    border-radius: 999px;
    font-weight: 600;
    font-size: clamp(0.62rem, 1.4vw, 0.78rem);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--pewter);
}
.hi-role[b-xefukk9mss] {
    font-weight: 800;
    font-size: clamp(1.85rem, 5.2vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.005em;
    color: var(--ink-white);
}
.hi-role + .hi-role[b-xefukk9mss] { margin-top: 0.12em; }
.hi em[b-xefukk9mss] {
    font-style: normal;
    background: linear-gradient(180deg, #ffffff, #cdd1d8 55%, #8f939c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 3px solid rgba(199, 203, 210, 0.4);
    padding-bottom: 0.02em;
}

/* the portrait, rendered like a struck silver coin / oracle cameo */
.cameo[b-xefukk9mss] {
    position: relative;
    flex: none;
    width: clamp(150px, 22vw, 215px);
    aspect-ratio: 1;
    margin: 0;
    display: grid;
    place-items: center;
    isolation: isolate;
}
.cameo-face[b-xefukk9mss] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 22%;
    filter: grayscale(1) contrast(1.05) brightness(1.02);
    border: 1px solid rgba(199, 203, 210, 0.55);
    box-shadow:
        inset 0 0 22px -6px rgba(0, 0, 0, 0.85),
        0 18px 40px -14px rgba(0, 0, 0, 0.9);
    transition: filter 0.6s ease, transform 0.6s ease;
}
/* concentric engraved ring, like a coin's rim */
.cameo-ring[b-xefukk9mss] {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(199, 203, 210, 0.32);
    box-shadow:
        inset 0 0 0 4px rgba(11, 11, 13, 0.9),
        inset 0 0 0 5px rgba(199, 203, 210, 0.18);
    pointer-events: none;
    z-index: 2;
}
/* soft pulsing halo behind the coin */
.cameo-halo[b-xefukk9mss] {
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 203, 210, 0.22), transparent 68%);
    z-index: -1;
    animation: cameo-breathe-b-xefukk9mss 5s ease-in-out infinite;
}
@keyframes cameo-breathe-b-xefukk9mss {
    0%, 100% { transform: scale(0.94); opacity: 0.55; }
    50% { transform: scale(1.06); opacity: 0.95; }
}
.cameo-cap[b-xefukk9mss] {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--pewter);
}
/* colour + lift on hover, echoing the journey seals */
.cameo:hover .cameo-face[b-xefukk9mss] {
    filter: grayscale(0) contrast(1) brightness(1);
    transform: scale(1.02);
}
.cameo:hover .cameo-ring[b-xefukk9mss] { border-color: rgba(199, 203, 210, 0.55); }

@media (max-width: 720px) {
    .hero[b-xefukk9mss] {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 2.4rem;
    }
    .cameo[b-xefukk9mss] { order: -1; }
}

.section-h[b-xefukk9mss] {
    margin: 3rem 0 0;
    font-family: 'Cinzel', serif;
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--silver);
}
.section-h[b-xefukk9mss]::after {
    content: "";
    display: block;
    width: 46px;
    height: 2px;
    margin-top: 0.7rem;
    background: linear-gradient(90deg, var(--silver), transparent);
}

/* what I do */
.focus[b-xefukk9mss] {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(199, 203, 210, 0.14);
    border: 1px solid rgba(199, 203, 210, 0.14);
    border-radius: 14px;
    overflow: hidden;
}
.focus li[b-xefukk9mss] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 1.3rem;
    background: linear-gradient(180deg, #131316, #0d0d10);
}
.focus h3[b-xefukk9mss] {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 0.84rem;
    letter-spacing: 0.015em;
    white-space: nowrap;
    color: var(--ink-white);
}
.focus p[b-xefukk9mss] {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--ink-dim);
}

/* skills */
.skills[b-xefukk9mss] {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.skills li[b-xefukk9mss] {
    padding: 0.4rem 0.95rem;
    border: 1px solid rgba(199, 203, 210, 0.22);
    border-radius: 999px;
    font-size: 0.92rem;
    color: var(--ink-dim);
    transition: border-color 0.25s ease, color 0.25s ease;
}
.skills li:hover[b-xefukk9mss] {
    border-color: var(--silver);
    color: var(--silver-bright);
}

/* ---- the path here: journey timeline ---- */
.path-lead[b-xefukk9mss] {
    max-width: 60ch;
    margin: 1rem 0 0;
    font-size: 1.12rem;
    line-height: 1.6;
    color: var(--ink-dim);
}
.journey[b-xefukk9mss] {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    border-left: 1px solid rgba(199, 203, 210, 0.18);
}
.chapter[b-xefukk9mss] {
    position: relative;
    padding: 0 0 2.6rem clamp(1.4rem, 3vw, 2.3rem);
}
.chapter:last-child[b-xefukk9mss] { padding-bottom: 0; }
.chapter[b-xefukk9mss]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 11px;
    height: 11px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, var(--silver-bright), var(--pewter) 75%);
    box-shadow: 0 0 0 4px var(--obsidian), 0 0 10px rgba(242, 244, 247, 0.4);
}

.ch-era[b-xefukk9mss] {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--silver);
}
.ch-head[b-xefukk9mss] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.45rem;
    flex-wrap: wrap;
}
.ch-title[b-xefukk9mss] {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    letter-spacing: 0.01em;
    color: var(--ink-white);
}
.ch-link[b-xefukk9mss] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex: 0 0 auto;
    font-size: 0.85rem;
    color: var(--ink-dim);
    text-decoration: none;
    transition: color 0.25s ease;
}
.ch-link svg[b-xefukk9mss] { width: 16px; height: 16px; }
.ch-link:hover[b-xefukk9mss] { color: var(--silver-bright); }

.ch-body[b-xefukk9mss] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-top: 1rem;
}
.ch-body.has-side[b-xefukk9mss] {
    grid-template-columns: 1fr clamp(150px, 24%, 210px);
    align-items: start;
}
.ch-narrative p[b-xefukk9mss] {
    margin: 0 0 0.85rem;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--ink-dim);
}
.ch-narrative p:last-child[b-xefukk9mss] { margin-bottom: 0; }

/* side visuals */
.ch-photo[b-xefukk9mss] {
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(199, 203, 210, 0.16);
    background: #0f0f12;
}
.ch-photo img[b-xefukk9mss] {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: grayscale(1) contrast(1.02);
    transition: filter 0.45s ease, transform 0.45s ease;
}
.ch-photo:hover img[b-xefukk9mss] { filter: grayscale(0) contrast(1.02); transform: scale(1.03); }
/* caption rises in as the colour returns */
.photo-cap[b-xefukk9mss] {
    position: absolute;
    inset: auto 0 0 0;
    margin: 0;
    padding: 1.7rem 0.85rem 0.65rem;
    background: linear-gradient(to top, rgba(8, 8, 10, 0.92), rgba(8, 8, 10, 0.35) 60%, transparent);
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--ink-white);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.ch-photo:hover .photo-cap[b-xefukk9mss] { opacity: 1; transform: none; }

.ch-logo[b-xefukk9mss] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1.3rem;
    border-radius: 14px;
    border: 1px solid rgba(199, 203, 210, 0.16);
    background: linear-gradient(180deg, #e9e6de, #cdc8bb);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.ch-logo:hover[b-xefukk9mss] {
    border-color: rgba(199, 203, 210, 0.42);
    box-shadow: 0 0 24px -6px rgba(242, 244, 247, 0.28);
}
.ch-logo img[b-xefukk9mss] {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: grayscale(1);
    transition: filter 0.5s ease;
}
/* the brand's colour returns on hover */
.ch-logo:hover img[b-xefukk9mss] { filter: grayscale(0); }
.ch-cap[b-xefukk9mss] {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4a463b;
    transition: opacity 0.3s ease, max-height 0.35s ease, margin-top 0.35s ease;
}
.ch-logo:hover .ch-cap[b-xefukk9mss] {
    opacity: 1;
    max-height: 2rem;
    margin-top: 0.7rem;
}

/* resume expander */
.ch-details[b-xefukk9mss] {
    margin-top: 1.1rem;
    border: 1px solid rgba(199, 203, 210, 0.16);
    border-radius: 12px;
    background: rgba(199, 203, 210, 0.03);
    overflow: hidden;
}
.ch-details > summary[b-xefukk9mss] {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--silver);
    transition: color 0.25s ease;
}
.ch-details > summary[b-xefukk9mss]::-webkit-details-marker { display: none; }
.ch-details > summary[b-xefukk9mss]::before {
    content: "▾";
    font-size: 0.8em;
    color: var(--pewter);
    transition: transform 0.3s ease;
}
.ch-details[open] > summary[b-xefukk9mss]::before { transform: rotate(180deg); }
.ch-details > summary:hover[b-xefukk9mss] { color: var(--silver-bright); }

.ch-detail-body[b-xefukk9mss] {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 1.1rem 1.3rem;
    border-top: 1px solid rgba(199, 203, 210, 0.1);
}
.role[b-xefukk9mss], .edu[b-xefukk9mss] {
    border-left: 2px solid rgba(199, 203, 210, 0.2);
    padding-left: 0.95rem;
}
.role-title[b-xefukk9mss] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink-white);
}
.role-org[b-xefukk9mss] { font-weight: 400; color: var(--ink-dim); }
.role-meta[b-xefukk9mss] {
    margin: 0.25rem 0 0;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pewter);
}
.role-desc[b-xefukk9mss] {
    margin: 0.45rem 0 0;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ink-dim);
}
.role-skills[b-xefukk9mss] {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.65rem 0 0;
    padding: 0;
}
.role-skills li[b-xefukk9mss] {
    border: 1px solid rgba(199, 203, 210, 0.2);
    border-radius: 999px;
    padding: 0.22rem 0.7rem;
    font-size: 0.8rem;
    color: var(--ink-dim);
}
.edu-h[b-xefukk9mss] {
    margin: 0.2rem 0 -0.3rem;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pewter);
}

/* cta */
.cta[b-xefukk9mss] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.4rem;
    margin-top: 3rem;
}
.about .cta-primary[b-xefukk9mss] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #f2f4f7, #c2c6cd);
    color: #0b0b0d;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.about .cta-primary:hover[b-xefukk9mss] {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(242, 244, 247, 0.4);
}
.cta-link[b-xefukk9mss] {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-dim);
    text-decoration: none;
    transition: color 0.25s ease;
}
.cta-link:hover[b-xefukk9mss] { color: var(--silver-bright); }

@media (prefers-reduced-motion: reduce) {
    .status-dot[b-xefukk9mss]::after { animation: none; }
}

@media (max-width: 620px) {
    .focus[b-xefukk9mss] { grid-template-columns: 1fr; }
    .ch-body.has-side[b-xefukk9mss] { grid-template-columns: 1fr; }
    .ch-logo[b-xefukk9mss] { max-width: 240px; }
}
/* /Components/Pages/Projects.razor.rz.scp.css */
/* ============================================================
   THE ARCHIVE — the projects wing of the temple.
   An engraved museum catalog: numbered plates, leader-line
   hovers, one accent per exhibit (colour wakes on hover, like
   the colonnade). Master tokens come from themes/serbres.css.
   ============================================================ */
.archive[b-ys6d1l3m6u] {
    max-width: 900px;
    margin: 0 auto;
    color: var(--ink-white);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ---- masthead ---- */
.arc-eyebrow[b-ys6d1l3m6u] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1.6vw, 0.95rem);
    margin: 0 0 1.1rem;
}
.arc-text[b-ys6d1l3m6u] {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: clamp(0.6rem, 1.5vw, 0.78rem);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--silver);
    padding-left: 0.32em;
}
.arc-rule[b-ys6d1l3m6u] {
    height: 1px;
    width: clamp(22px, 7vw, 78px);
    flex: 0 1 auto;
    background: linear-gradient(90deg, transparent, rgba(199, 203, 210, 0.7));
}
.arc-rule:last-child[b-ys6d1l3m6u] { background: linear-gradient(90deg, rgba(199, 203, 210, 0.7), transparent); }
.arc-loz[b-ys6d1l3m6u] {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--silver-bright), var(--pewter));
    box-shadow: 0 0 8px rgba(242, 244, 247, 0.4);
}
.arc-title[b-ys6d1l3m6u] {
    margin: 0;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(2.2rem, 7vw, 4.2rem);
    letter-spacing: clamp(0.2rem, 1.6vw, 0.7rem);
    padding-left: clamp(0.2rem, 1.6vw, 0.7rem);
    background: linear-gradient(180deg, #ffffff 0%, #cdd1d8 40%, #898d96 72%, #eef0f3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.6));
}
.arc-creed[b-ys6d1l3m6u] {
    margin: 0.8rem auto 0;
    max-width: 44ch;
    text-align: center;
    font-style: italic;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: var(--ink-dim);
}

/* ---- the catalog ---- */
.exhibits[b-ys6d1l3m6u] {
    list-style: none;
    margin: clamp(2.4rem, 5vw, 3.4rem) 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.exhibit[b-ys6d1l3m6u] { border-top: 1px solid rgba(199, 203, 210, 0.14); }
.exhibit:last-child[b-ys6d1l3m6u] { border-bottom: 1px solid rgba(199, 203, 210, 0.14); }

.ex-link[b-ys6d1l3m6u] {
    position: relative;
    display: grid;
    grid-template-columns: clamp(4.6rem, 9vw, 6.5rem) minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(0.9rem, 2.5vw, 1.6rem);
    padding: clamp(1.3rem, 3vw, 1.9rem) clamp(0.4rem, 1.5vw, 1rem);
    text-decoration: none;
    color: inherit;
    transition: background 0.35s ease;
}
.ex-link:hover[b-ys6d1l3m6u], .ex-link:focus-visible[b-ys6d1l3m6u] { background: rgba(199, 203, 210, 0.04); }
.ex-link:focus-visible[b-ys6d1l3m6u] { outline: 1px solid var(--accent); outline-offset: -1px; }

/* engraved leader line that draws on hover */
.ex-link[b-ys6d1l3m6u]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, var(--accent), transparent 70%);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ex-link:hover[b-ys6d1l3m6u]::after, .ex-link:focus-visible[b-ys6d1l3m6u]::after { transform: scaleX(1); }

.ex-no[b-ys6d1l3m6u] {
    font-family: 'Cinzel', serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(0.72rem, 1.6vw, 0.9rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pewter);
    transition: color 0.35s ease;
}
.ex-link:hover .ex-no[b-ys6d1l3m6u] { color: var(--accent-bright); }

.ex-body[b-ys6d1l3m6u] { display: flex; flex-direction: column; gap: 0.3rem; min-width: 0; }
.ex-flag[b-ys6d1l3m6u] {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-bright);
}
.ex-name[b-ys6d1l3m6u] {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 2.8vw, 1.6rem);
    letter-spacing: 0.03em;
    color: var(--ink-white);
    transition: color 0.35s ease, text-shadow 0.35s ease;
}
.ex-link:hover .ex-name[b-ys6d1l3m6u] { color: var(--accent-bright); text-shadow: 0 0 18px color-mix(in srgb, var(--accent) 55%, transparent); }
.ex-latin[b-ys6d1l3m6u] {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pewter);
}
.ex-desc[b-ys6d1l3m6u] {
    margin-top: 0.25rem;
    max-width: 52ch;
    font-size: clamp(0.98rem, 2vw, 1.12rem);
    line-height: 1.55;
    color: var(--ink-dim);
}

.ex-side[b-ys6d1l3m6u] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
    flex: 0 0 auto;
}
.ex-status[b-ys6d1l3m6u] {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 0.56rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border: 1px solid rgba(199, 203, 210, 0.25);
    border-radius: 999px;
    color: var(--silver);
    white-space: nowrap;
}
.ex-status.is-live[b-ys6d1l3m6u] { color: #7ce3a1; border-color: rgba(124, 227, 161, 0.35); }
.ex-status.is-new[b-ys6d1l3m6u] { color: var(--accent-bright); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.ex-status.is-build[b-ys6d1l3m6u] { color: var(--pewter); border-style: dashed; }

/* the plate etching — grayscale at rest, colour wakes on hover */
.ex-glyph[b-ys6d1l3m6u] {
    width: clamp(52px, 8vw, 72px);
    height: auto;
    overflow: visible;
    fill: none;
    stroke: rgba(199, 203, 210, 0.55);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}
.ex-glyph .gfill[b-ys6d1l3m6u] { fill: rgba(199, 203, 210, 0.55); stroke: none; transition: fill 0.4s ease; }
.ex-glyph .gyri[b-ys6d1l3m6u] { opacity: 0.5; }
.ex-link:hover .ex-glyph[b-ys6d1l3m6u],
.ex-link:focus-visible .ex-glyph[b-ys6d1l3m6u] {
    stroke: var(--accent-bright);
    filter: drop-shadow(0 0 10px color-mix(in srgb, var(--accent) 60%, transparent));
    transform: translateY(-2px);
}
.ex-link:hover .ex-glyph .gfill[b-ys6d1l3m6u] { fill: var(--accent-bright); }

/* ---- featured specimen (the Brain) ---- */
.exhibit.is-featured[b-ys6d1l3m6u] {
    margin: 0.9rem 0;
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    background:
        linear-gradient(160deg, rgba(255, 217, 121, 0.03), transparent 45%),
        rgba(13, 13, 16, 0.6);
}
.exhibit.is-featured + .exhibit[b-ys6d1l3m6u] { border-top: 1px solid rgba(199, 203, 210, 0.14); }
.exhibit.is-featured .ex-link[b-ys6d1l3m6u] { padding-block: clamp(1.7rem, 3.6vw, 2.4rem); }
/* specimen corner ticks */
.ex-tick[b-ys6d1l3m6u] {
    position: absolute;
    width: 11px;
    height: 11px;
    opacity: 0.6;
    pointer-events: none;
}
.ex-tick.tl[b-ys6d1l3m6u] { top: 8px; left: 8px; border-top: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.ex-tick.tr[b-ys6d1l3m6u] { top: 8px; right: 8px; border-top: 1px solid var(--accent); border-right: 1px solid var(--accent); }

/* ---- closing note ---- */
.arc-note[b-ys6d1l3m6u] {
    margin: clamp(1.8rem, 4vw, 2.6rem) auto 0;
    text-align: center;
    max-width: 46ch;
    font-style: italic;
    font-size: 1.02rem;
    color: var(--pewter);
}

/* ---- narrow screens ---- */
@media (max-width: 640px) {
    .ex-link[b-ys6d1l3m6u] { grid-template-columns: 1fr; gap: 0.8rem; }
    .ex-no[b-ys6d1l3m6u] { order: -1; }
    .ex-side[b-ys6d1l3m6u] { flex-direction: row-reverse; align-items: center; justify-content: flex-end; }
}
/* /Components/Pages/Serbres.razor.rz.scp.css */
/* ============================================================
   SERBRES — the master brand. A Greco-Roman temple at dusk:
   Cerberus's three heads stand as columns, each a gate into a
   brand. The temple is monochrome — obsidian, marble, silver.
   Colour belongs to the brands, and wakes only on hover.
   ============================================================ */

/* Master palette + temple tokens (--silver, --cameo-face, --brand …) live in
   wwwroot/themes/serbres.css. Each column overrides --brand inline. */
.temple[b-i26yivrjpr] {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem);
    border: 1px solid rgba(199, 203, 210, 0.18);
    border-radius: 4px;
    color: var(--ink-white);
    font-family: 'Cormorant Garamond', Georgia, serif;
    background:
        radial-gradient(115% 75% at 50% -8%, rgba(226, 230, 240, 0.12), transparent 55%),
        radial-gradient(80% 55% at 50% 4%, rgba(199, 203, 210, 0.08), transparent 52%),
        linear-gradient(180deg, var(--marble-dk) 0%, var(--obsidian) 64%, #060608 100%);
    box-shadow:
        0 40px 90px -40px rgba(0, 0, 0, 0.85),
        inset 0 1px 0 rgba(242, 244, 247, 0.06);
}

/* moonlit vignette */
.temple[b-i26yivrjpr]::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(120% 90% at 50% 28%, transparent 55%, rgba(0, 0, 0, 0.6) 100%);
}

/* film grain */
.grain[b-i26yivrjpr] {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.temple > *:not(.grain):not(.moonlight):not(.starfield):not(.constellation):not(.cross):not(.daylight)[b-i26yivrjpr] {
    position: relative;
    z-index: 5;
}

/* ---- moonlight: a cool highlight that follows the cursor ----
   Defaults to the crown of the temple, so it reads right with no JS. */
@property --mx { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --my { syntax: "<percentage>"; inherits: false; initial-value: 0%; }
.moonlight[b-i26yivrjpr] {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
    background: radial-gradient(46% 56% at var(--mx, 50%) var(--my, -2%),
        rgba(226, 230, 240, 0.16),
        rgba(199, 203, 210, 0.05) 38%,
        transparent 70%);
}

/* ---- starfield: a faint drifting constellation in the temple sky ----
   Reinforces "a guardian watching over a constellation of worlds." Two
   parallax layers; fades out before the colonnade so it reads as sky. */
.starfield[b-i26yivrjpr] {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.85;
    -webkit-mask: linear-gradient(180deg, #000 0 48%, transparent 82%);
    mask: linear-gradient(180deg, #000 0 48%, transparent 82%);
}
.starfield[b-i26yivrjpr]::before,
.starfield[b-i26yivrjpr]::after {
    content: "";
    position: absolute;
    inset: -10% 0 0;
    background-repeat: no-repeat;
}
/* far layer — small, faint, slow */
.starfield[b-i26yivrjpr]::before {
    background-image:
        radial-gradient(1px 1px at 12% 22%, rgba(242, 244, 247, 0.7), transparent),
        radial-gradient(1px 1px at 28% 9%, rgba(242, 244, 247, 0.5), transparent),
        radial-gradient(1px 1px at 41% 30%, rgba(242, 244, 247, 0.55), transparent),
        radial-gradient(1px 1px at 57% 14%, rgba(242, 244, 247, 0.6), transparent),
        radial-gradient(1px 1px at 73% 26%, rgba(242, 244, 247, 0.45), transparent),
        radial-gradient(1px 1px at 86% 11%, rgba(242, 244, 247, 0.6), transparent),
        radial-gradient(1px 1px at 93% 33%, rgba(242, 244, 247, 0.4), transparent),
        radial-gradient(1px 1px at 6% 40%, rgba(242, 244, 247, 0.4), transparent);
    animation: srb-drift-b-i26yivrjpr 70s linear infinite, srb-twinkle-b-i26yivrjpr 6.5s ease-in-out infinite;
}
/* near layer — a few brighter "anchor" stars, faster parallax */
.starfield[b-i26yivrjpr]::after {
    background-image:
        radial-gradient(1.6px 1.6px at 20% 16%, rgba(255, 255, 255, 0.95), transparent),
        radial-gradient(1.6px 1.6px at 50% 8%, rgba(226, 230, 240, 0.9), transparent),
        radial-gradient(1.6px 1.6px at 67% 22%, rgba(255, 255, 255, 0.85), transparent),
        radial-gradient(2px 2px at 81% 18%, rgba(255, 255, 255, 0.95), transparent),
        radial-gradient(1.4px 1.4px at 35% 20%, rgba(226, 230, 240, 0.8), transparent);
    filter: drop-shadow(0 0 3px rgba(242, 244, 247, 0.6));
    animation: srb-drift-b-i26yivrjpr 46s linear infinite reverse, srb-twinkle-b-i26yivrjpr 4.2s ease-in-out infinite 1.1s;
}
@keyframes srb-drift-b-i26yivrjpr {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-2.5%, 1.6%, 0); }
}
@keyframes srb-twinkle-b-i26yivrjpr {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .starfield[b-i26yivrjpr]::before, .starfield[b-i26yivrjpr]::after { animation: none; }
}

/* ---------- masthead ---------- */

/* the Cerberus crest, masked to silver */
.crest[b-i26yivrjpr] {
    display: block;
    width: clamp(74px, 13vw, 128px);
    height: clamp(74px, 13vw, 128px);
    margin: 0 auto 1.2rem;
    background: linear-gradient(160deg, #fafbfc 0%, #c2c6cd 46%, #82868f 78%, #d6d9de 100%);
    -webkit-mask: url("/brands/serbres-logo.svg") center / contain no-repeat;
    mask: url("/brands/serbres-logo.svg") center / contain no-repeat;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
    opacity: 0;
    animation: srb-fade-b-i26yivrjpr 1.1s ease 0.05s forwards;
}

.eyebrow[b-i26yivrjpr] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1.6vw, 0.95rem);
    margin: 0 0 1.1rem;
    opacity: 0;
    animation: srb-fade-b-i26yivrjpr 1s ease 0.2s forwards;
}
.ktext[b-i26yivrjpr] {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: clamp(0.6rem, 1.5vw, 0.82rem);
    letter-spacing: 0.34em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--silver);
    padding-left: 0.34em;
}
.krule[b-i26yivrjpr] {
    height: 1px;
    width: clamp(22px, 7vw, 78px);
    flex: 0 1 auto;
    background: linear-gradient(90deg, transparent, rgba(199, 203, 210, 0.7));
}
.krule:last-child[b-i26yivrjpr] {
    background: linear-gradient(90deg, rgba(199, 203, 210, 0.7), transparent);
}
.kloz[b-i26yivrjpr] {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--silver-bright), var(--pewter));
    box-shadow: 0 0 8px rgba(242, 244, 247, 0.4);
}

.wordmark[b-i26yivrjpr] {
    margin: 0;
    padding-left: clamp(0.3rem, 2.4vw, 1.7rem);
    font-family: 'Cinzel', serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    font-size: clamp(3.1rem, 12vw, 8.5rem);
    letter-spacing: clamp(0.3rem, 2.4vw, 1.7rem);
    background: linear-gradient(180deg, #ffffff 0%, #cdd1d8 40%, #898d96 72%, #eef0f3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 26px rgba(226, 230, 240, 0.18));
    opacity: 0;
    animation: srb-rise-word-b-i26yivrjpr 1.3s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s forwards;
}

.creed[b-i26yivrjpr] {
    margin: 0.9rem auto 0;
    max-width: 38ch;
    font-style: italic;
    font-size: clamp(1.05rem, 2.3vw, 1.45rem);
    color: var(--ink-dim);
    opacity: 0;
    animation: srb-fade-b-i26yivrjpr 1.1s ease 0.45s forwards;
}

/* ---------- the monument ---------- */
.monument[b-i26yivrjpr] {
    position: relative;
    width: min(780px, 100%);
    margin: clamp(0.5rem, 1.6vw, 1.3rem) auto 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
/* while the oracle reveals the headshot, lift the monument above the cross
   so the portrait sits in front of the cross */
.monument:has(.oracle:hover)[b-i26yivrjpr],
.monument:has(.oracle:focus-within)[b-i26yivrjpr] { z-index: 20 !important; }

/* pediment */
.pediment[b-i26yivrjpr] {
    position: relative;
    width: 100%;
    height: clamp(46px, 8vw, 82px);
    background: linear-gradient(180deg, var(--stone-lit), var(--stone));
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    box-shadow: inset 0 -3px 0 rgba(199, 203, 210, 0.5);
    filter: drop-shadow(0 0 16px rgba(226, 230, 240, 0.12));
    opacity: 0;
    animation: srb-descend-b-i26yivrjpr 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.55s forwards;
}
.acroterion[b-i26yivrjpr] {
    position: absolute;
    top: -9px;
    left: 50%;
    width: 12px;
    height: 12px;
    transform: translateX(-50%) rotate(45deg);
    background: linear-gradient(135deg, var(--silver-bright), var(--pewter));
    box-shadow: 0 0 10px rgba(242, 244, 247, 0.5);
}
/* ---- the oracle: the keystone orb reveals Sammie + links to About ---- */
.oracle[b-i26yivrjpr] {
    position: absolute;
    left: 50%;
    top: clamp(-10px, 0.8vw, 8px);
    transform: translateX(-50%);
    z-index: 9;
    padding: 11px;
    line-height: 0;
}
.oracle-orb[b-i26yivrjpr] {
    display: block;
    width: clamp(13px, 2.4vw, 18px);
    height: clamp(13px, 2.4vw, 18px);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, var(--silver-bright), var(--pewter) 70%, transparent);
    box-shadow: 0 0 12px rgba(242, 244, 247, 0.45);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    animation: oracle-pulse-b-i26yivrjpr 2.6s ease-out infinite;
}
@keyframes oracle-pulse-b-i26yivrjpr {
    0% { box-shadow: 0 0 12px rgba(242, 244, 247, 0.45), 0 0 0 0 rgba(242, 244, 247, 0.5); }
    70% { box-shadow: 0 0 12px rgba(242, 244, 247, 0.45), 0 0 0 11px rgba(242, 244, 247, 0); }
    100% { box-shadow: 0 0 12px rgba(242, 244, 247, 0.45), 0 0 0 0 rgba(242, 244, 247, 0); }
}
.oracle:hover .oracle-orb[b-i26yivrjpr],
.oracle:focus-visible .oracle-orb[b-i26yivrjpr] {
    animation: none;
    box-shadow: 0 0 20px 5px rgba(242, 244, 247, 0.85);
    transform: scale(1.15);
}
@media (prefers-reduced-motion: reduce) {
    .oracle-orb[b-i26yivrjpr] { animation: none !important; }
}
.oracle:focus-visible[b-i26yivrjpr] {
    outline: 1px solid var(--silver);
    outline-offset: 4px;
    border-radius: 999px;
}

.oracle-reveal[b-i26yivrjpr] {
    position: absolute;
    left: 50%;
    bottom: calc(100% - 4px);
    line-height: normal;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px) scale(0.94);
    transform-origin: bottom center;
    transition: opacity 0.34s ease, transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.34s;
    pointer-events: none;
}
.oracle:hover .oracle-reveal[b-i26yivrjpr],
.oracle:focus-visible .oracle-reveal[b-i26yivrjpr] {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}

.oracle-portrait[b-i26yivrjpr] {
    position: relative;
    display: block;
    width: clamp(86px, 13vw, 120px);
    height: clamp(86px, 13vw, 120px);
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, #2a2118, #100b07);
    border: 2px solid var(--silver);
    box-shadow:
        0 14px 34px -10px rgba(0, 0, 0, 0.85),
        0 0 30px -4px rgba(242, 244, 247, 0.4),
        inset 0 0 0 4px rgba(11, 11, 13, 0.55);
}
.oracle-portrait[b-i26yivrjpr]::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(199, 203, 210, 0.4);
    pointer-events: none;
}
.oracle-portrait img[b-i26yivrjpr] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    display: block;
}
/* name + current position, revealed to the side of the portrait */
.oracle-card[b-i26yivrjpr] {
    position: absolute;
    left: calc(100% + 0.9rem);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    padding: 0.5rem 0 0.5rem 0.95rem;
    border-left: 2px solid var(--silver);
    text-align: left;
    width: max-content;
    max-width: 16rem;
}
.oracle-name[b-i26yivrjpr] {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    color: var(--silver-bright);
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.oracle-role[b-i26yivrjpr] {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.2;
    color: var(--ink-dim);
}
.oracle-org[b-i26yivrjpr] {
    margin-top: 0.2rem;
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pewter);
}
@media (max-width: 640px) {
    .oracle-reveal[b-i26yivrjpr] { display: flex; flex-direction: column; align-items: center; }
    .oracle-card[b-i26yivrjpr] {
        position: static;
        transform: none;
        border-left: 0;
        border-top: 2px solid var(--silver);
        margin-top: 0.55rem;
        padding: 0.55rem 0 0;
        align-items: center;
        text-align: center;
        max-width: 14rem;
    }
    .oracle-name[b-i26yivrjpr] { white-space: normal; }
}

/* entablature — Doric triglyph frieze */
.entablature[b-i26yivrjpr] {
    width: 100%;
    height: clamp(24px, 4.5vw, 40px);
    background:
        repeating-linear-gradient(90deg,
            rgba(199, 203, 210, 0.5) 0 2px,
            transparent 2px 6px,
            rgba(199, 203, 210, 0.5) 6px 8px,
            transparent 8px 56px),
        linear-gradient(180deg, var(--stone-lit), var(--stone));
    border-top: 2px solid var(--silver);
    border-bottom: 2px solid rgba(199, 203, 210, 0.4);
    box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: srb-fade-b-i26yivrjpr 0.9s ease 0.7s forwards;
}

/* ---------- colonnade ---------- */
.colonnade[b-i26yivrjpr] {
    display: flex;
    align-items: stretch;
    justify-content: center;
    /* raise the roof clear of the logos — even gap above the cameos */
    margin-top: clamp(0.6rem, 2vw, 1.3rem);
}

.pillar[b-i26yivrjpr] {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 clamp(0.3rem, 1.6vw, 1.1rem);
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transform: translateY(46px);
    animation: srb-raise-b-i26yivrjpr 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.pillar:nth-child(1)[b-i26yivrjpr] { animation-delay: 0.85s; }
.pillar:nth-child(2)[b-i26yivrjpr] { animation-delay: 1.0s; }
.pillar:nth-child(3)[b-i26yivrjpr] { animation-delay: 1.15s; }

/* brand cameo — the head, a marble relief; B/W at rest, colour on hover */
.cameo[b-i26yivrjpr] {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(58px, 11vw, 96px);
    height: clamp(58px, 11vw, 96px);
    margin-bottom: 0.7rem;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 38%, #f2efe8, var(--cameo-face) 70%, #c9c5bb);
    border: 2px solid var(--silver);
    box-shadow:
        0 6px 16px -6px rgba(0, 0, 0, 0.7),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.18);
    transition: border-color 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
}
.cameo img[b-i26yivrjpr] {
    max-width: 72%;
    max-height: 72%;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: grayscale(1) contrast(1.04);
    transition: filter 0.45s ease;
}
/* tall vertical lockups (e.g. Legacy Ballot) — cap height so they sit
   comfortably inside the round cameo instead of crowding the bottom curve */
.cameo img.mark-tall[b-i26yivrjpr] {
    max-width: 68%;
    max-height: 56%;
}
/* the genie wordmark fills more of the cameo than the compact emblems */
.cameo img.mark-genie[b-i26yivrjpr] {
    max-width: 92%;
    max-height: 92%;
}

/* even highlight tab under each brand cameo — same length on every column,
   lights up in the brand colour on hover */
.tab[b-i26yivrjpr] {
    width: clamp(74px, 14vw, 112px);
    height: 3px;
    margin: -0.4rem 0 0.5rem;
    border-radius: 2px;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* capital — flares past the shaft but stays within its own bay (no overlap) */
.capital[b-i26yivrjpr] {
    width: clamp(52px, 10.5vw, 112px);
    height: clamp(14px, 2.6vw, 22px);
    background: linear-gradient(180deg, var(--stone-lit), var(--stone));
    border-top: 3px solid var(--silver);
    border-radius: 0 0 40% 40% / 0 0 80% 80%;
    box-shadow: inset 0 2px 0 rgba(242, 244, 247, 0.22);
    transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

/* fluted shaft */
.shaft[b-i26yivrjpr] {
    position: relative;
    width: clamp(34px, 7vw, 76px);
    height: clamp(150px, 26vh, 296px);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.55)),
        repeating-linear-gradient(90deg, rgba(242, 244, 247, 0.09) 0 2px, rgba(0, 0, 0, 0.2) 2px 9px),
        linear-gradient(180deg, #26262b, #131316);
    box-shadow: inset 2px 0 3px rgba(242, 244, 247, 0.08);
    transition: background 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
}

/* base torus — discrete per column so adjacent bases don't overlap */
.footing[b-i26yivrjpr] {
    width: clamp(104px, 64%, 150px);
    height: clamp(12px, 2.2vw, 18px);
    background: linear-gradient(180deg, var(--stone-lit), #0e0e11);
    border-radius: 22% 22% 0 0;
    box-shadow: inset 0 2px 0 rgba(242, 244, 247, 0.16);
    transition: background 0.45s ease, box-shadow 0.45s ease;
}

/* per-bay slab — flush across to form a continuous base line */
.step[b-i26yivrjpr] {
    width: 100%;
    height: clamp(10px, 1.8vw, 16px);
    background: linear-gradient(180deg, #242429, #101013);
    border-top: 1px solid rgba(199, 203, 210, 0.28);
}

/* inscription plaque */
.plaque[b-i26yivrjpr] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.9rem;
}
.pname[b-i26yivrjpr] {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: clamp(0.7rem, 1.6vw, 1rem);
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--ink-white);
    transition: color 0.45s ease, text-shadow 0.45s ease;
}
.pdomain[b-i26yivrjpr] {
    font-size: clamp(0.74rem, 1.5vw, 0.98rem);
    font-style: italic;
    line-height: 1.25;
    color: var(--ink-dim);
}

/* hover — the head wakes; the brand's colour floods its column */
.pillar:hover .cameo[b-i26yivrjpr],
.pillar:focus-visible .cameo[b-i26yivrjpr] {
    border-color: var(--brand);
    box-shadow:
        0 8px 20px -6px rgba(0, 0, 0, 0.7),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        0 0 26px -2px var(--brand);
    transform: translateY(-3px);
}
.pillar:hover .cameo img[b-i26yivrjpr],
.pillar:focus-visible .cameo img[b-i26yivrjpr] {
    filter: grayscale(0) contrast(1.04);
}
.pillar:hover .shaft[b-i26yivrjpr],
.pillar:focus-visible .shaft[b-i26yivrjpr] {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.13), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.13)),
        repeating-linear-gradient(90deg, rgba(120, 90, 40, 0.05) 0 2px, rgba(255, 255, 255, 0.55) 2px 9px),
        linear-gradient(180deg, #f1ece2, #ddd6c6);
    filter: none;
    box-shadow: inset 2px 0 3px rgba(0, 0, 0, 0.08), 0 0 34px -6px var(--brand);
}
/* the capital (top) and footing (base) strike gold, like a temple column */
.pillar:hover .capital[b-i26yivrjpr],
.pillar:focus-visible .capital[b-i26yivrjpr] {
    background: linear-gradient(180deg, #f3d684, #d8b24a 55%, #9f7826);
    border-top-color: #f3d886;
    box-shadow: inset 0 2px 0 rgba(255, 245, 214, 0.6), 0 0 16px -2px rgba(216, 178, 74, 0.7);
}
.pillar:hover .footing[b-i26yivrjpr],
.pillar:focus-visible .footing[b-i26yivrjpr] {
    background: linear-gradient(180deg, #ecca78, #9a7521);
    box-shadow: inset 0 2px 0 rgba(255, 245, 214, 0.5);
}
.pillar:hover .tab[b-i26yivrjpr],
.pillar:focus-visible .tab[b-i26yivrjpr] {
    background: var(--brand-bright);
    box-shadow: 0 0 16px var(--brand), 0 0 4px var(--brand-bright);
}
.pillar:hover .pname[b-i26yivrjpr],
.pillar:focus-visible .pname[b-i26yivrjpr] {
    color: var(--brand-bright);
    text-shadow: 0 0 16px var(--brand);
}
.pillar:focus-visible[b-i26yivrjpr] {
    outline: 1px solid var(--brand);
    outline-offset: 6px;
    border-radius: 2px;
}

/* stylobate — the temple steps */
.stylobate[b-i26yivrjpr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: srb-fade-b-i26yivrjpr 0.9s ease 1.3s forwards;
}
.stylobate span[b-i26yivrjpr] {
    height: clamp(7px, 1.4vw, 12px);
    background: linear-gradient(180deg, #222227, #0d0d10);
    border-top: 1px solid rgba(199, 203, 210, 0.2);
}
.stylobate span:nth-child(1)[b-i26yivrjpr] { width: 100%; }
.stylobate span:nth-child(2)[b-i26yivrjpr] { width: 108%; }
.stylobate span:nth-child(3)[b-i26yivrjpr] { width: 116%; box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.9); }

/* ---------- manifesto ---------- */
.manifesto[b-i26yivrjpr] {
    max-width: 56ch;
    margin: clamp(2.6rem, 5vw, 3.4rem) auto 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: var(--ink-dim);
    opacity: 0;
    animation: srb-fade-b-i26yivrjpr 1.1s ease 1.5s forwards;
}
.dropcap[b-i26yivrjpr] {
    float: left;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 3.4em;
    line-height: 0.72;
    padding: 0.05em 0.12em 0 0;
    color: var(--silver);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* ---------- closing keyline ---------- */
.keyline[b-i26yivrjpr] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: clamp(2rem, 4vw, 3rem);
    opacity: 0;
    animation: srb-fade-b-i26yivrjpr 1s ease 1.7s forwards;
}
.keyline .rule[b-i26yivrjpr] {
    width: clamp(40px, 12vw, 130px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--silver), transparent);
}
.keyline .dot[b-i26yivrjpr] {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--silver);
}
.keyline .lozenge[b-i26yivrjpr] {
    width: 11px;
    height: 11px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--silver-bright), var(--pewter));
    box-shadow: 0 0 12px rgba(242, 244, 247, 0.45);
}

/* ---------- motion ---------- */
@keyframes srb-fade-b-i26yivrjpr { to { opacity: 1; } }
@keyframes srb-rise-word-b-i26yivrjpr {
    from { opacity: 0; transform: translateY(24px); letter-spacing: clamp(0.6rem, 4vw, 2.6rem); filter: blur(6px) drop-shadow(0 2px 1px rgba(0,0,0,0.6)); }
    to { opacity: 1; transform: translateY(0); filter: blur(0) drop-shadow(0 2px 1px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 26px rgba(226, 230, 240, 0.18)); }
}
@keyframes srb-descend-b-i26yivrjpr {
    from { opacity: 0; transform: translateY(-28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes srb-raise-b-i26yivrjpr { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
    .crest[b-i26yivrjpr], .eyebrow[b-i26yivrjpr], .wordmark[b-i26yivrjpr], .creed[b-i26yivrjpr], .pediment[b-i26yivrjpr], .entablature[b-i26yivrjpr],
    .pillar[b-i26yivrjpr], .stylobate[b-i26yivrjpr], .manifesto[b-i26yivrjpr], .keyline[b-i26yivrjpr] {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---------- narrow screens ---------- */
@media (max-width: 560px) {
    .pdomain[b-i26yivrjpr] { display: none; }
    .creed[b-i26yivrjpr] { max-width: 28ch; }
    .wordmark[b-i26yivrjpr] {
        font-size: clamp(2.2rem, 11vw, 3.4rem);
        letter-spacing: 0.12em;
        padding-left: 0.12em;
    }
}

/* ============================================================
   EASTER EGGS — the Cancer constellation + the Commander statue
   ============================================================ */

/* ---------- I · the Cancer constellation ---------- */
.constellation[b-i26yivrjpr] {
    position: absolute;
    top: clamp(48px, 11%, 140px);
    right: clamp(6px, 6vw, 92px);
    width: clamp(90px, 12vw, 130px);
    z-index: 6;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.cnc-map[b-i26yivrjpr] {
    width: 100%;
    height: auto;
    overflow: visible;
    opacity: 0.72;
    animation: cnc-breathe-b-i26yivrjpr 6.5s ease-in-out infinite;
}
@keyframes cnc-breathe-b-i26yivrjpr { 0%, 100% { opacity: 0.55; } 50% { opacity: 0.9; } }
.cnc-line[b-i26yivrjpr] {
    fill: none;
    stroke: rgba(199, 203, 210, 0.22);
    stroke-width: 0.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.45s ease, filter 0.45s ease;
}
.cnc-star[b-i26yivrjpr] {
    fill: rgba(233, 235, 239, 0.55);
    transition: fill 0.45s ease, filter 0.45s ease;
}
.cnc-star.s-bright[b-i26yivrjpr] { fill: rgba(242, 244, 247, 0.8); }
.cnc-star.s-dim[b-i26yivrjpr] { fill: rgba(233, 235, 239, 0.4); }
.cnc-beehive circle[b-i26yivrjpr] { fill: rgba(233, 235, 239, 0.4); }
.cnc-tag[b-i26yivrjpr] {
    position: absolute;
    top: -0.4rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cinzel', serif;
    font-size: 0.56rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--silver);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.constellation:hover[b-i26yivrjpr], .constellation:focus-visible[b-i26yivrjpr], .constellation:focus-within[b-i26yivrjpr] { z-index: 30; }
.constellation:hover .cnc-map[b-i26yivrjpr],
.constellation:focus-within .cnc-map[b-i26yivrjpr] { animation: none; opacity: 1; }
.constellation:hover .cnc-line[b-i26yivrjpr],
.constellation:focus-within .cnc-line[b-i26yivrjpr] {
    stroke: var(--silver-bright);
    filter: drop-shadow(0 0 3px rgba(242, 244, 247, 0.6));
}
.constellation:hover .cnc-star[b-i26yivrjpr],
.constellation:focus-within .cnc-star[b-i26yivrjpr] {
    fill: var(--silver-bright);
    filter: drop-shadow(0 0 4px rgba(242, 244, 247, 0.95));
}
.constellation:hover .cnc-tag[b-i26yivrjpr],
.constellation:focus-within .cnc-tag[b-i26yivrjpr] { opacity: 1; }
.constellation:focus-visible[b-i26yivrjpr] { outline: 1px solid var(--silver); outline-offset: 8px; border-radius: 6px; }

.cnc-panel[b-i26yivrjpr] {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: -0.4rem;
    width: clamp(250px, 27vw, 322px);
    padding: 1.1rem 1.2rem 1.2rem;
    text-align: left;
    background: rgba(13, 13, 16, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 203, 210, 0.28);
    border-radius: 14px;
    box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.85), 0 0 30px -10px rgba(242, 244, 247, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.97);
    transform-origin: top right;
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.32s;
    pointer-events: none;
    z-index: 2;
}
.constellation:hover .cnc-panel[b-i26yivrjpr],
.constellation:focus-within .cnc-panel[b-i26yivrjpr] {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}
.cnc-head[b-i26yivrjpr] {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    color: var(--ink-white);
}
.cnc-glyph[b-i26yivrjpr] {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--silver-bright);
    text-shadow: 0 0 14px rgba(242, 244, 247, 0.5);
}
.cnc-birth[b-i26yivrjpr] {
    margin: 0.45rem 0 0;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 0.64rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: var(--ink-dim);
}
.cnc-big[b-i26yivrjpr] {
    list-style: none;
    margin: 0.85rem 0 0;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(199, 203, 210, 0.16);
    border-bottom: 1px solid rgba(199, 203, 210, 0.16);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cnc-big li[b-i26yivrjpr] {
    display: grid;
    grid-template-columns: 4rem 1fr auto;
    align-items: baseline;
    gap: 0.5rem;
}
.cnc-big li span[b-i26yivrjpr] {
    font-family: 'Cinzel', serif;
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pewter);
}
.cnc-big li b[b-i26yivrjpr] {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--silver-bright);
}
.cnc-big li em[b-i26yivrjpr] {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-style: normal;
    font-size: 0.62rem;
    color: var(--pewter);
}
.cnc-planets[b-i26yivrjpr] {
    list-style: none;
    margin: 0.85rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.42rem 1rem;
}
.cnc-nodes[b-i26yivrjpr] {
    list-style: none;
    margin: 0.7rem 0 0;
    padding: 0.7rem 0 0;
    border-top: 1px solid rgba(199, 203, 210, 0.16);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.42rem 1rem;
}
.cnc-planets li[b-i26yivrjpr], .cnc-nodes li[b-i26yivrjpr] {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.92rem;
    color: var(--ink-white);
}
.cnc-planets li i[b-i26yivrjpr], .cnc-nodes li i[b-i26yivrjpr] {
    font-style: normal;
    width: 1rem;
    flex: 0 0 auto;
    text-align: center;
    color: var(--silver);
}
.cnc-nodes li i[b-i26yivrjpr] { color: var(--silver-bright); }
.cnc-planets li em[b-i26yivrjpr], .cnc-nodes li em[b-i26yivrjpr] {
    margin-left: auto;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-style: normal;
    font-size: 0.56rem;
    letter-spacing: 0.02em;
    color: var(--pewter);
    text-align: right;
}
.cnc-note[b-i26yivrjpr] {
    margin: 0.85rem 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--silver);
}

/* ---------- II · the Commander's crown (at the keyline) ---------- */
.commander[b-i26yivrjpr] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.15rem;
    padding: 0.1rem 0.3rem;
    background: none;
    border: 0;
    line-height: 0;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.cmd-emblem[b-i26yivrjpr] { width: clamp(30px, 4.4vw, 40px); height: auto; overflow: visible; }
.cmd-crown[b-i26yivrjpr], .cmd-band[b-i26yivrjpr] { fill: url(#cmdSilver); transition: filter 0.4s ease; }
.cmd-crown[b-i26yivrjpr] { filter: drop-shadow(0 0 5px rgba(242, 244, 247, 0.4)); }
.cmd-gem[b-i26yivrjpr] { fill: var(--silver-bright); }
.cmd-halo[b-i26yivrjpr] {
    position: absolute;
    inset: -70% -25%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 244, 247, 0.3), transparent 64%);
    opacity: 0.4;
    animation: cmd-pulse-b-i26yivrjpr 3.2s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}
@keyframes cmd-pulse-b-i26yivrjpr {
    0%, 100% { opacity: 0.2; transform: scale(0.9); }
    50% { opacity: 0.5; transform: scale(1.08); }
}
.commander:hover[b-i26yivrjpr], .commander:focus-visible[b-i26yivrjpr], .commander:focus-within[b-i26yivrjpr] { z-index: 30; }
.commander:hover .cmd-crown[b-i26yivrjpr], .commander:focus-within .cmd-crown[b-i26yivrjpr] { filter: drop-shadow(0 0 10px rgba(242, 244, 247, 0.9)); }
.commander:hover .cmd-halo[b-i26yivrjpr], .commander:focus-within .cmd-halo[b-i26yivrjpr] { opacity: 0.85; animation: none; transform: scale(1.12); }
.commander:focus-visible[b-i26yivrjpr] { outline: 1px solid var(--silver); outline-offset: 6px; border-radius: 999px; }

.commander-panel[b-i26yivrjpr] {
    position: absolute;
    bottom: calc(100% + 0.9rem);
    left: 50%;
    width: clamp(236px, 27vw, 300px);
    padding: 1.2rem 1.3rem 1.3rem;
    text-align: left;
    background: rgba(13, 13, 16, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 203, 210, 0.28);
    border-radius: 14px;
    box-shadow: 0 28px 56px -20px rgba(0, 0, 0, 0.88), 0 0 30px -10px rgba(242, 244, 247, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px) scale(0.97);
    transform-origin: bottom center;
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.32s;
    pointer-events: none;
    z-index: 2;
}
.commander:hover .commander-panel[b-i26yivrjpr], .commander:focus-within .commander-panel[b-i26yivrjpr] {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
    pointer-events: auto;
}
.mbti-type[b-i26yivrjpr] {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff, #cdd1d8 55%, #9a9ea7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mbti-type span[b-i26yivrjpr] {
    display: inline-block;
    margin-left: 0.55rem;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--silver);
    -webkit-text-fill-color: var(--silver);
    vertical-align: middle;
}
.mbti-tag[b-i26yivrjpr] {
    margin: 0.55rem 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--silver);
}
.mbti-axes[b-i26yivrjpr] { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.ax[b-i26yivrjpr] { display: grid; grid-template-columns: 1fr auto; column-gap: 0.5rem; align-items: baseline; }
.ax-l[b-i26yivrjpr] {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-white);
}
.ax-v[b-i26yivrjpr] {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 0.66rem;
    color: var(--silver-bright);
    font-variant-numeric: tabular-nums;
}
.ax-bar[b-i26yivrjpr] {
    grid-column: 1 / -1;
    margin-top: 3px;
    height: 5px;
    border-radius: 3px;
    background: rgba(199, 203, 210, 0.14);
    position: relative;
    overflow: hidden;
}
.ax-bar[b-i26yivrjpr]::after {
    content: "";
    position: absolute;
    inset: 0;
    width: var(--v);
    border-radius: 3px;
    background: linear-gradient(90deg, var(--pewter), var(--silver-bright));
    box-shadow: 0 0 8px rgba(242, 244, 247, 0.45);
}
.mbti-strengths[b-i26yivrjpr] { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.95rem; }
.mbti-strengths span[b-i26yivrjpr] {
    font-family: 'Cinzel', serif;
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.28rem 0.55rem;
    border: 1px solid rgba(199, 203, 210, 0.25);
    border-radius: 999px;
    color: var(--silver);
}

@media (prefers-reduced-motion: reduce) {
    .cnc-map[b-i26yivrjpr], .cmd-halo[b-i26yivrjpr] { animation: none !important; }
    .cnc-map[b-i26yivrjpr] { opacity: 0.8; }
}
@media (max-width: 560px) {
    .constellation[b-i26yivrjpr] { width: 76px; top: 40px; right: 4px; }
    .cnc-panel[b-i26yivrjpr] { width: min(82vw, 290px); right: -0.4rem; }
    .commander-panel[b-i26yivrjpr] { width: min(82vw, 290px); }
}

/* ============================================================
   III · the cross — hover to flood the temple with daylight
   ============================================================ */
.cross[b-i26yivrjpr] {
    display: block;
    width: fit-content;
    margin: clamp(1.5rem, 3.4vw, 2.7rem) auto 0;
    position: relative;
    z-index: 8;
    padding: 5px 11px;
    background: none;
    border: 0;
    line-height: 0;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    animation: cross-breathe-b-i26yivrjpr 4.5s ease-in-out infinite;
}
.cross svg[b-i26yivrjpr] { width: clamp(13px, 1.7vw, 17px); height: auto; display: block; }
.cross path[b-i26yivrjpr] {
    fill: var(--silver-bright);
    filter: drop-shadow(0 0 5px rgba(242, 244, 247, 0.4));
    transition: fill 0.7s ease, filter 0.7s ease;
}
.cross:hover path[b-i26yivrjpr], .cross:focus-visible path[b-i26yivrjpr] { filter: drop-shadow(0 0 10px rgba(242, 244, 247, 0.85)); }
.cross:focus-visible[b-i26yivrjpr] { outline: 1px solid var(--silver); outline-offset: 5px; border-radius: 6px; }
@keyframes cross-breathe-b-i26yivrjpr { 0%, 100% { opacity: 0.62; } 50% { opacity: 1; } }

/* the daylight wash that fades over the night sky */
.daylight[b-i26yivrjpr] {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    /* white marble: cream field with faint grey veining */
    background:
        linear-gradient(115deg, transparent 36%, rgba(150, 140, 124, 0.07) 39%, transparent 43%),
        linear-gradient(72deg, transparent 58%, rgba(150, 140, 124, 0.06) 61%, transparent 65%),
        linear-gradient(100deg, transparent 20%, rgba(150, 140, 124, 0.05) 22%, transparent 26%),
        radial-gradient(130% 88% at 50% -8%, #fdfcf8, #f4f1e9 54%, #e8e3d6 100%);
    transition: opacity 0.85s ease;
}

/* graceful crossfade for everything the flip touches */
.temple[b-i26yivrjpr],
.temple .wordmark[b-i26yivrjpr], .temple .crest[b-i26yivrjpr], .temple .cmd-emblem[b-i26yivrjpr], .temple .oracle-orb[b-i26yivrjpr],
.temple .creed[b-i26yivrjpr], .temple .manifesto[b-i26yivrjpr], .temple .ktext[b-i26yivrjpr], .temple .dropcap[b-i26yivrjpr],
.temple .pname[b-i26yivrjpr], .temple .pdomain[b-i26yivrjpr], .temple .eyebrow[b-i26yivrjpr],
.temple .starfield[b-i26yivrjpr], .temple .moonlight[b-i26yivrjpr], .temple .grain[b-i26yivrjpr], .temple .constellation[b-i26yivrjpr] {
    transition: opacity 0.85s ease, color 0.7s ease, fill 0.7s ease,
                -webkit-text-fill-color 0.7s ease, filter 0.7s ease, box-shadow 0.7s ease;
}

/* ---- THE FLIP — day breaks while the cross is held ---- */
.temple:has(.cross:hover) .daylight[b-i26yivrjpr],
.temple:has(.cross:focus-within) .daylight[b-i26yivrjpr] { opacity: 1; }

.temple:has(.cross:hover)[b-i26yivrjpr],
.temple:has(.cross:focus-within)[b-i26yivrjpr] {
    --ink-white: #14130e;
    --ink-dim: rgba(26, 24, 17, 0.64);
    --silver: #9a958a;
    --silver-bright: #34322a;
    --pewter: #a9a498;
    --stone: #e6e1d3;
    --stone-lit: #f4f0e6;
    --cameo-face: #f1eee6;
    box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
/* the monument carved in marble (its dark fills are hardcoded, so flip them) */
.temple:has(.cross:hover) .shaft[b-i26yivrjpr],
.temple:has(.cross:focus-within) .shaft[b-i26yivrjpr] {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.12)),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0 2px, rgba(255, 255, 255, 0.55) 2px 9px),
        linear-gradient(180deg, #efeae0, #ddd7c8);
    box-shadow: inset 2px 0 3px rgba(0, 0, 0, 0.07);
}
.temple:has(.cross:hover) .step[b-i26yivrjpr],
.temple:has(.cross:focus-within) .step[b-i26yivrjpr] { background: linear-gradient(180deg, #e7e2d4, #d6d0c1); border-top-color: rgba(0, 0, 0, 0.12); }
/* gold capitals + bases on the marble columns (daylight) */
.temple:has(.cross:hover) .capital[b-i26yivrjpr],
.temple:has(.cross:focus-within) .capital[b-i26yivrjpr] { background: linear-gradient(180deg, #f3d684, #d8b24a 55%, #9f7826); border-top-color: #c79a3a; }
.temple:has(.cross:hover) .footing[b-i26yivrjpr],
.temple:has(.cross:focus-within) .footing[b-i26yivrjpr] { background: linear-gradient(180deg, #ecca78, #9a7521); }
.temple:has(.cross:hover) .stylobate span[b-i26yivrjpr],
.temple:has(.cross:focus-within) .stylobate span[b-i26yivrjpr] { background: linear-gradient(180deg, #e7e2d4, #d4cebe); border-top-color: rgba(0, 0, 0, 0.1); }
.temple:has(.cross:hover) .shaft[b-i26yivrjpr], .temple:has(.cross:focus-within) .shaft[b-i26yivrjpr],
.temple:has(.cross:hover) .step[b-i26yivrjpr], .temple:has(.cross:focus-within) .step[b-i26yivrjpr],
.temple:has(.cross:hover) .footing[b-i26yivrjpr], .temple:has(.cross:focus-within) .footing[b-i26yivrjpr],
.temple:has(.cross:hover) .stylobate span[b-i26yivrjpr], .temple:has(.cross:focus-within) .stylobate span[b-i26yivrjpr] { transition: background 0.7s ease, box-shadow 0.7s ease, border-color 0.7s ease; }

/* the night recedes */
.temple:has(.cross:hover) .starfield[b-i26yivrjpr],
.temple:has(.cross:focus-within) .starfield[b-i26yivrjpr],
.temple:has(.cross:hover) .moonlight[b-i26yivrjpr],
.temple:has(.cross:focus-within) .moonlight[b-i26yivrjpr],
.temple:has(.cross:hover) .grain[b-i26yivrjpr],
.temple:has(.cross:focus-within) .grain[b-i26yivrjpr],
.temple:has(.cross:hover) .constellation[b-i26yivrjpr],
.temple:has(.cross:focus-within) .constellation[b-i26yivrjpr] { opacity: 0; }
.temple:has(.cross:hover) .constellation[b-i26yivrjpr],
.temple:has(.cross:focus-within) .constellation[b-i26yivrjpr] { pointer-events: none; }

/* darken the silver marks so they read as black on white */
.temple:has(.cross:hover) .wordmark[b-i26yivrjpr],
.temple:has(.cross:focus-within) .wordmark[b-i26yivrjpr] { -webkit-text-fill-color: #16151b; }
.temple:has(.cross:hover) .crest[b-i26yivrjpr],
.temple:has(.cross:focus-within) .crest[b-i26yivrjpr] { filter: brightness(0.16) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.18)); }
.temple:has(.cross:hover) .cmd-emblem[b-i26yivrjpr],
.temple:has(.cross:focus-within) .cmd-emblem[b-i26yivrjpr] { filter: brightness(0.22); }
.temple:has(.cross:hover) .oracle-orb[b-i26yivrjpr],
.temple:has(.cross:focus-within) .oracle-orb[b-i26yivrjpr] { filter: brightness(0.3); }
/* the cross carved in dark wood under the marble light */
.temple:has(.cross:hover) .cross path[b-i26yivrjpr],
.temple:has(.cross:focus-within) .cross path[b-i26yivrjpr] {
    fill: url(#crossWood);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

@media (prefers-reduced-motion: reduce) {
    .cross[b-i26yivrjpr] { animation: none; opacity: 0.9; }
}

/* ============================================================
   EXPANDED EGG MODALS — click the constellation / crown
   ============================================================ */
.egg-hint[b-i26yivrjpr] {
    margin: 0.7rem 0 0;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 0.56rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pewter);
}

.egg-modal[b-i26yivrjpr] {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.8rem, 4vw, 3rem);
    background: rgba(6, 6, 9, 0.74);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: egg-fade-b-i26yivrjpr 0.3s ease;
}
@keyframes egg-fade-b-i26yivrjpr { from { opacity: 0; } to { opacity: 1; } }

.egg-dialog[b-i26yivrjpr] {
    position: relative;
    width: min(680px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(1.4rem, 3.5vw, 2.4rem);
    background: linear-gradient(180deg, rgba(21, 21, 25, 0.98), rgba(12, 12, 15, 0.98));
    border: 1px solid rgba(199, 203, 210, 0.28);
    border-radius: 16px;
    box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.9), 0 0 50px -14px rgba(242, 244, 247, 0.18);
    color: var(--ink-white);
    animation: egg-pop-b-i26yivrjpr 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.chart-dialog[b-i26yivrjpr] { width: min(780px, 100%); }
@keyframes egg-pop-b-i26yivrjpr {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to { opacity: 1; transform: none; }
}
.egg-close[b-i26yivrjpr] {
    position: absolute;
    top: 0.85rem;
    right: 0.9rem;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(199, 203, 210, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--silver);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.egg-close:hover[b-i26yivrjpr] { background: rgba(255, 255, 255, 0.14); color: #fff; transform: rotate(90deg); }

.egg-eyebrow[b-i26yivrjpr] {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--pewter);
}
.egg-h[b-i26yivrjpr] {
    margin: 0.35rem 0 0;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    line-height: 1;
    color: var(--silver-bright);
}
.egg-h span[b-i26yivrjpr] {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 0.58em;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--silver);
    margin-left: 0.5rem;
}
.egg-tag[b-i26yivrjpr] {
    margin: 0.8rem 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--silver);
    max-width: 52ch;
}
.egg-sub[b-i26yivrjpr] {
    margin: 1.6rem 0 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(199, 203, 210, 0.14);
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pewter);
}

/* ---- influential-trait rings ---- */
.ring-grid[b-i26yivrjpr] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem 0.6rem;
}
@media (max-width: 560px) { .ring-grid[b-i26yivrjpr] { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 380px) { .ring-grid[b-i26yivrjpr] { grid-template-columns: repeat(2, 1fr); } }
.ring[b-i26yivrjpr] { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.ring-circle[b-i26yivrjpr] { position: relative; display: inline-flex; }
.ring-circle svg[b-i26yivrjpr] { width: clamp(48px, 9vw, 58px); height: auto; display: block; }
.ring-val[b-i26yivrjpr] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 0.92rem;
    color: var(--silver-bright);
}
.ring-bg[b-i26yivrjpr] { fill: none; stroke: rgba(199, 203, 210, 0.14); stroke-width: 4; }
.ring-fg[b-i26yivrjpr] {
    fill: none;
    stroke: var(--silver-bright);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 106.81;
    stroke-dashoffset: calc(106.81 * (1 - var(--p) / 100));
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 0 4px rgba(242, 244, 247, 0.35));
}
.ring-lbl[b-i26yivrjpr] {
    font-family: 'Cinzel', serif;
    font-size: 0.52rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    color: var(--ink-dim);
}

/* ---- strengths / watch-outs ---- */
.egg-cols[b-i26yivrjpr] { display: grid; grid-template-columns: 1fr; gap: 0.6rem 1.6rem; }
@media (min-width: 560px) { .egg-cols[b-i26yivrjpr] { grid-template-columns: 1fr 1fr; } }
.egg-list[b-i26yivrjpr] { list-style: none; margin: 0.4rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.egg-list li[b-i26yivrjpr] { position: relative; padding-left: 1.3rem; font-size: 0.96rem; line-height: 1.4; color: var(--silver); }
.egg-list li[b-i26yivrjpr]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
}
.egg-list.good li[b-i26yivrjpr]::before { background: var(--silver-bright); box-shadow: 0 0 6px rgba(242, 244, 247, 0.5); }
.egg-list.warn li[b-i26yivrjpr]::before { background: transparent; border: 1px solid var(--pewter); }

/* ---- the chart wheel ---- */
.chart-layout[b-i26yivrjpr] { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.3rem; }
@media (min-width: 700px) { .chart-layout[b-i26yivrjpr] { grid-template-columns: minmax(0, 1fr) 218px; align-items: center; } }
.chart-wrap[b-i26yivrjpr] { display: flex; justify-content: center; }
.chart-wheel[b-i26yivrjpr] { width: min(100%, 430px); height: auto; }
.cw-c[b-i26yivrjpr] { fill: none; stroke: rgba(199, 203, 210, 0.38); stroke-width: 1; }
.cw-hub[b-i26yivrjpr] { stroke: rgba(199, 203, 210, 0.22); }
.cw-tick[b-i26yivrjpr] { stroke: rgba(199, 203, 210, 0.32); stroke-width: 0.7; }
.cw-signdiv[b-i26yivrjpr] { stroke: rgba(199, 203, 210, 0.32); stroke-width: 0.8; }
.cw-sign[b-i26yivrjpr] { fill: var(--silver-bright); font-size: 15px; text-anchor: middle; }
.cw-house[b-i26yivrjpr] { stroke: rgba(199, 203, 210, 0.13); stroke-width: 0.7; }
.cw-axis[b-i26yivrjpr] { stroke: rgba(199, 203, 210, 0.5); stroke-width: 1.3; }
.cw-asp[b-i26yivrjpr] { stroke-width: 1; opacity: 0.65; }
.cw-asp.soft[b-i26yivrjpr] { stroke: #5b87d6; }
.cw-asp.hard[b-i26yivrjpr] { stroke: #cf5a4f; }
.cw-pltick[b-i26yivrjpr] { stroke: rgba(199, 203, 210, 0.4); stroke-width: 0.7; }
.cw-planet[b-i26yivrjpr] { fill: var(--silver-bright); font-size: 16px; text-anchor: middle; }
.cw-planet.node[b-i26yivrjpr] { fill: var(--silver); font-size: 13px; }
.cw-center[b-i26yivrjpr] { fill: var(--silver); }
.cw-axlbl[b-i26yivrjpr] {
    fill: var(--pewter);
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-anchor: middle;
}

.chart-legend[b-i26yivrjpr] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.32rem 1rem;
    align-content: start;
}
@media (min-width: 700px) { .chart-legend[b-i26yivrjpr] { grid-template-columns: 1fr; } }
.chart-legend li[b-i26yivrjpr] { display: flex; align-items: baseline; gap: 0.5rem; font-family: 'Cormorant Garamond', serif; font-size: 0.94rem; color: var(--ink-white); }
.chart-legend li i[b-i26yivrjpr] { font-style: normal; width: 1.1rem; flex: 0 0 auto; text-align: center; color: var(--silver); }
.chart-legend li em[b-i26yivrjpr] { margin-left: auto; font-family: 'IBM Plex Mono', ui-monospace, monospace; font-style: normal; font-size: 0.58rem; color: var(--pewter); white-space: nowrap; }
.chart-legend-axis[b-i26yivrjpr] { border-top: 1px solid rgba(199, 203, 210, 0.14); padding-top: 0.32rem; margin-top: 0.1rem; }
.chart-legend-axis i[b-i26yivrjpr] { color: var(--silver-bright); }

@media (prefers-reduced-motion: reduce) {
    .egg-modal[b-i26yivrjpr], .egg-dialog[b-i26yivrjpr] { animation: none; }
    .ring-fg[b-i26yivrjpr] { transition: none; }
}
