﻿/* #JaztineGotKimmited · Evedon Lakeside · 5 May 2026 */
:root, [data-theme="light"] {
    --bg: #faf7fc;
    --surface: #fdfbff;
    --surface2: #f3eef9;
    --surface3: #ede5f5;
    --divider: #e4daf0;
    --border: #d8cde8;
    --text: #2e2040;
    --muted: #6e5f82;
    --faint: #b0a0c4;
    --inv: #fff;
    --primary: #8b6eb5;
    --ph: #7459a0;
    --phl: #ede5f5;
    --gold: #c4a055;
    --ok: #5a7a5a;
    --ok-bg: #ddf0dd;
    --bad: #9a3a5a;
    --bad-bg: #f5dde6;
    --r1: .5rem;
    --r2: 1rem;
    --r3: 1.5rem;
    --r4: 2rem;
    --pill: 9999px;
    --s1: .25rem;
    --s2: .5rem;
    --s3: .75rem;
    --s4: 1rem;
    --s5: 1.25rem;
    --s6: 1.5rem;
    --s8: 2rem;
    --s10: 2.5rem;
    --s12: 3rem;
    --s16: 4rem;
    --tx-xs: clamp(.75rem,.7rem + .25vw,.875rem);
    --tx-sm: clamp(.875rem,.8rem + .35vw,1rem);
    --tx-base: clamp(1rem,.95rem + .25vw,1.125rem);
    --tx-lg: clamp(1.125rem,1rem + .75vw,1.5rem);
    --tx-xl: clamp(1.5rem,1.2rem + 1.25vw,2.1rem);
    --tx-2xl: clamp(2rem,1.3rem + 2vw,3.4rem);
    --font-b: 'Manrope','Helvetica Neue',sans-serif;
    --font-d: 'Cormorant Garamond',Georgia,serif;
    --t: 180ms cubic-bezier(.16,1,.3,1);
    --sh: 0 12px 32px rgba(46,32,64,.10);
    --sh-sm: 0 2px 8px rgba(46,32,64,.06);
}

[data-theme="dark"] {
    --bg: #1a1522;
    --surface: #211b2c;
    --surface2: #2a2238;
    --surface3: #332944;
    --divider: #3e3152;
    --border: #4d3e64;
    --text: #ede5f8;
    --muted: #c2b0d8;
    --faint: #7a6896;
    --inv: #1a1522;
    --primary: #c4a8e8;
    --ph: #d4bcf0;
    --phl: #3a2c4e;
    --gold: #e0bb78;
    --ok: #8aba8a;
    --ok-bg: #1e301e;
    --bad: #e88aaa;
    --bad-bg: #3a1e28;
    --sh: 0 18px 42px rgba(0,0,0,.38);
    --sh-sm: 0 2px 8px rgba(0,0,0,.24);
}

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

html {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    scroll-padding-top: 4rem
}

body {
    min-height: 100dvh;
    font-family: var(--font-b);
    font-size: var(--tx-base);
    line-height: 1.65;
    color: var(--text);
    background: radial-gradient(ellipse at 0% 0%,rgba(139,110,181,.13) 0%,transparent 40%), radial-gradient(ellipse at 100% 4%,rgba(196,160,85,.09) 0%,transparent 30%),var(--bg);
    transition: background 250ms,color 250ms
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto
}

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

h1, h2, h3, h4 {
    text-wrap: balance;
    line-height: 1.1
}

p, li {
    text-wrap: pretty;
    max-width: 72ch
}

button {
    cursor: pointer;
    background: none;
    border: none
}

ul {
    list-style: none
}

a, button, [role="button"] {
    transition: color var(--t),background var(--t),border-color var(--t),box-shadow var(--t),transform var(--t)
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: var(--r1)
}

@media(prefers-reduced-motion:reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}

.app-shell {
    display: flex;
    flex-direction: column;
    min-height: 100dvh
}

main {
    flex: 1
}

.container {
    width: min(1100px,calc(100% - 2rem));
    margin-inline: auto
}

.skip-link {
    position: absolute;
    left: -999px;
    top: var(--s4);
    padding: var(--s2) var(--s5);
    background: var(--primary);
    color: var(--inv);
    border-radius: var(--pill);
    z-index: 200;
    font-weight: 700
}

    .skip-link:focus {
        left: var(--s4)
    }

.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    background: color-mix(in srgb,var(--bg) 80%,transparent);
    border-bottom: 1px solid var(--divider)
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s4);
    min-height: 72px;
    flex-wrap: wrap;
    padding-block: var(--s2)
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--s3);
    font-family: var(--font-d);
    font-size: var(--tx-lg);
    font-weight: 600;
    color: var(--text);
    text-decoration: none
}

    .brand:hover {
        color: var(--primary)
    }

.brand-logo {
    width: 40px;
    height: 40px;
    color: var(--primary);
    flex-shrink: 0
}

.topnav {
    display: flex;
    align-items: center;
    gap: var(--s1);
    flex-wrap: wrap
}

.nav-link {
    padding: var(--s2) var(--s4);
    border-radius: var(--pill);
    font-size: var(--tx-sm);
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    border: 1px solid transparent
}

    .nav-link:hover, .nav-link.active {
        color: var(--primary);
        background: var(--phl);
        border-color: color-mix(in srgb,var(--primary) 22%,transparent)
    }

.theme-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--pill);
    border: 1px solid var(--border);
    background: var(--surface);
    display: grid;
    place-items: center;
    font-size: 1.1rem
}

    .theme-btn:hover {
        background: var(--surface2);
        transform: translateY(-1px)
    }

.eyebrow {
    display: inline-block;
    padding: .45rem .9rem;
    border-radius: var(--pill);
    background: var(--phl);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: var(--tx-xs);
    font-weight: 700;
    margin-bottom: var(--s4)
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: .35rem .8rem;
    border-radius: var(--pill);
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: var(--tx-xs);
    font-weight: 600;
    color: var(--muted)
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r3);
    box-shadow: var(--sh)
}

.divider {
    height: 1px;
    background: var(--divider);
    margin-block: var(--s2)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s2);
    min-height: 48px;
    padding: 0 var(--s6);
    border-radius: var(--pill);
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: var(--tx-sm);
    text-decoration: none
}

.btn-primary {
    background: var(--primary);
    color: var(--inv);
    box-shadow: 0 6px 20px color-mix(in srgb,var(--primary) 38%,transparent)
}

    .btn-primary:hover:not(:disabled) {
        background: var(--ph);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px color-mix(in srgb,var(--primary) 40%,transparent)
    }

    .btn-primary:disabled {
        opacity: .5;
        cursor: not-allowed;
        transform: none
    }

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border)
}

    .btn-secondary:hover {
        background: var(--surface2);
        transform: translateY(-1px)
    }

.footer {
    border-top: 1px solid var(--divider);
    padding: var(--s5) 0
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: var(--s2);
    color: var(--muted);
    font-size: var(--tx-sm)
}

.footer-heart {
    color: var(--primary);
    font-size: 1.1rem
}

.splash {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    gap: var(--s4);
    text-align: center
}

#blazor-error-ui {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--s4) var(--s6);
    background: var(--bad-bg);
    border-top: 1px solid color-mix(in srgb,var(--bad) 30%,transparent);
    color: var(--bad);
    font-size: var(--tx-sm)
}

.reload {
    margin-left: var(--s3);
    font-weight: 700;
    text-decoration: underline
}

.dismiss {
    float: right;
    cursor: pointer
}

.hero {
    padding: clamp(3.5rem,9vw,6rem) 0 var(--s16)
}

.hero-inner {
    display: grid;
    gap: var(--s10);
    align-items: center
}

@media(min-width:800px) {
    .hero-inner {
        grid-template-columns: 1.1fr .9fr
    }
}

.hero-copy h1 {
    font-family: var(--font-d);
    font-size: var(--tx-2xl);
    margin-bottom: var(--s4);
    letter-spacing: -.01em
}

.hero-amp {
    color: var(--primary);
    font-style: italic
}

.hero-sub {
    color: var(--muted);
    max-width: 52ch;
    margin-bottom: var(--s6)
}

.hero-actions {
    display: flex;
    gap: var(--s3);
    flex-wrap: wrap
}

.hero-card {
    padding: var(--s6);
    display: grid;
    gap: var(--s5)
}

.countdown, .stats-row {
    display: grid;
    gap: var(--s3)
}

.countdown {
    grid-template-columns: repeat(4,1fr)
}

.stats-row {
    grid-template-columns: repeat(3,1fr)
}

.countbox, .stat {
    background: var(--surface2);
    border: 1px solid var(--divider);
    border-radius: var(--r2);
    padding: var(--s4) var(--s2);
    text-align: center
}

    .countbox strong, .stat strong {
        display: block;
        font-family: var(--font-d);
        font-size: clamp(1.5rem,1rem + 1.2vw,2.4rem);
        color: var(--primary);
        line-height: 1;
        margin-bottom: .3rem
    }

    .countbox span, .stat span {
        font-size: var(--tx-xs);
        text-transform: uppercase;
        letter-spacing: .09em;
        color: var(--muted)
    }

.married-badge {
    font-family: var(--font-d);
    font-size: var(--tx-xl);
    color: var(--primary);
    text-align: center;
    padding: var(--s4)
}

.readonly-badge {
    padding: var(--s4);
    border-radius: var(--r2);
    background: var(--phl);
    color: var(--primary);
    font-size: var(--tx-sm);
    font-weight: 600;
    text-align: center;
    margin-top: var(--s4)
}

.gallery-section {
    padding-bottom: 5rem
}

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--s4);
    flex-wrap: wrap;
    margin-bottom: var(--s6)
}

    .section-head h2 {
        font-family: var(--font-d);
        font-size: var(--tx-xl);
        margin-bottom: var(--s1)
    }

.section-sub {
    color: var(--muted);
    font-size: var(--tx-sm)
}

.masonry {
    columns: 1;
    column-gap: var(--s4)
}

@media(min-width:620px) {
    .masonry {
        columns: 2
    }
}

@media(min-width:1000px) {
    .masonry {
        columns: 3
    }
}

.photo-card {
    break-inside: avoid;
    margin-bottom: var(--s4);
    overflow: hidden;
    transition: box-shadow var(--t),transform var(--t)
}

    .photo-card:hover {
        box-shadow: 0 20px 48px rgba(46,32,64,.16);
        transform: translateY(-2px)
    }

.photo-img-wrap {
    overflow: hidden;
    background: var(--surface2);
    position: relative;
    cursor: pointer
}

    .photo-img-wrap img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        transition: transform 400ms cubic-bezier(.16,1,.3,1)
    }

.photo-card:hover .photo-img-wrap img {
    transform: scale(1.025)
}

.photo-img-wrap.broken img {
    display: none
}

.broken-msg {
    display: none;
    position: absolute;
    inset: 0;
    place-items: center;
    font-size: 2.5rem;
    color: var(--faint)
}

.photo-img-wrap.broken .broken-msg {
    display: grid
}

.photo-body {
    padding: var(--s4);
    display: grid;
    gap: var(--s3)
}

.photo-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--s3)
}

.guest-name {
    font-weight: 700;
    font-size: var(--tx-base);
    display: block
}

.photo-time {
    display: block;
    font-size: var(--tx-xs);
    color: var(--muted);
    margin-top: 2px
}

.photo-message {
    color: var(--muted);
    font-size: var(--tx-sm);
    font-style: italic
}

.like-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    min-height: 40px;
    padding: 0 var(--s4);
    border-radius: var(--pill);
    border: 1px solid var(--border);
    background: var(--surface2);
    font-size: var(--tx-sm);
    font-weight: 600
}

    .like-btn:hover {
        transform: translateY(-1px)
    }

    .like-btn.liked {
        background: var(--phl);
        color: var(--primary);
        border-color: color-mix(in srgb,var(--primary) 30%,var(--border))
    }

.like-heart {
    display: inline-block;
    transition: transform 200ms cubic-bezier(.16,1,.3,1)
}

.like-btn.liked .like-heart {
    transform: scale(1.35)
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

.skeleton {
    background: linear-gradient(90deg,var(--surface3) 25%,color-mix(in srgb,var(--surface3) 55%,var(--bg)) 50%,var(--surface3) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.6s ease-in-out infinite;
    border-radius: var(--r1)
}

.sk-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 0
}

.sk-line {
    height: .9em;
    margin-bottom: var(--s2)
}

.empty-state {
    border: 1.5px dashed var(--border);
    border-radius: var(--r4);
    padding: clamp(3rem,8vw,5rem) var(--s6);
    text-align: center;
    background: color-mix(in srgb,var(--phl) 28%,var(--surface));
    display: grid;
    place-items: center;
    gap: var(--s4)
}

.empty-icon {
    font-size: 3rem
}

.empty-state h3 {
    font-family: var(--font-d);
    font-size: var(--tx-xl)
}

.empty-state p {
    color: var(--muted)
}

.page-wrap {
    padding: var(--s10) 0 5rem
}

.not-found {
    padding: var(--s16) 0;
    text-align: center
}

.split-page {
    display: grid;
    gap: var(--s10)
}

@media(min-width:800px) {
    .split-page {
        grid-template-columns: 1.05fr .95fr
    }
}

.panel {
    padding: var(--s6)
}

    .panel h1 {
        font-family: var(--font-d);
        font-size: var(--tx-2xl);
        margin-bottom: var(--s4)
    }

    .panel h2 {
        font-family: var(--font-d);
        font-size: var(--tx-xl);
        margin-bottom: var(--s4)
    }

    .panel h3 {
        font-family: var(--font-d);
        font-size: var(--tx-lg);
        margin-bottom: var(--s4)
    }

.page-sub {
    color: var(--muted);
    margin-bottom: var(--s8);
    max-width: 52ch
}

.field {
    display: grid;
    gap: var(--s2);
    margin-bottom: var(--s4)
}

    .field label {
        font-size: var(--tx-sm);
        font-weight: 700
    }

.req {
    color: var(--primary)
}

.field input, .field textarea, .url-input {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    border-radius: var(--r2);
    padding: .9rem 1rem;
    outline: none;
    transition: border-color var(--t),box-shadow var(--t)
}

    .field input:focus, .field textarea:focus, .url-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px color-mix(in srgb,var(--primary) 14%,transparent)
    }

    .field input::placeholder, .field textarea::placeholder {
        color: var(--faint)
    }

.field textarea {
    resize: vertical;
    min-height: 110px
}

.field-hint {
    font-size: var(--tx-xs);
    color: var(--muted);
    margin-top: var(--s1)
}

.vmsg {
    font-size: var(--tx-xs);
    color: var(--bad)
}

.drop-zone {
    border: 1.5px dashed color-mix(in srgb,var(--primary) 40%,var(--border));
    border-radius: var(--r3);
    background: color-mix(in srgb,var(--phl) 35%,var(--surface));
    position: relative;
    overflow: hidden;
    transition: border-color var(--t)
}

    .drop-zone:hover {
        border-color: var(--primary)
    }

    .drop-zone.has-files {
        border-style: solid;
        border-color: var(--primary)
    }

.drop-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    min-height: unset !important;
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important
}

.drop-label {
    display: grid;
    place-items: center;
    gap: var(--s2);
    padding: var(--s8) var(--s4);
    text-align: center;
    cursor: pointer;
    pointer-events: none
}

.drop-icon {
    font-size: 2.5rem
}

.drop-label strong {
    font-size: var(--tx-base);
    font-weight: 700
}

.helper {
    font-size: var(--tx-xs);
    color: var(--muted)
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(100px,1fr));
    gap: var(--s3);
    margin-top: var(--s4)
}

.preview-tile {
    aspect-ratio: 1;
    border-radius: var(--r2);
    overflow: hidden;
    border: 1px solid var(--divider);
    background: var(--surface2)
}

    .preview-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.form-actions {
    display: flex;
    gap: var(--s3);
    flex-wrap: wrap;
    margin-top: var(--s2)
}

.alert {
    padding: var(--s4);
    border-radius: var(--r2);
    font-size: var(--tx-sm);
    margin-top: var(--s3)
}

.alert-success {
    background: var(--ok-bg);
    color: var(--ok);
    border: 1px solid color-mix(in srgb,var(--ok) 25%,transparent);
    font-weight: 600
}

    .alert-success a {
        color: var(--ok);
        font-weight: 700;
        text-decoration: underline
    }

.alert-error {
    background: var(--bad-bg);
    color: var(--bad);
    border: 1px solid color-mix(in srgb,var(--bad) 25%,transparent)
}

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

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite
}

.tips-list {
    display: grid;
    gap: var(--s3);
    margin-bottom: var(--s4)
}

    .tips-list li {
        font-size: var(--tx-sm);
        color: var(--muted);
        padding-left: var(--s5);
        position: relative
    }

        .tips-list li::before {
            content: '♥';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: .75em;
            top: 4px
        }

.tips-note {
    padding: var(--s4);
    border-radius: var(--r2);
    background: var(--phl);
    font-size: var(--tx-sm);
    color: var(--muted)
}

    .tips-note strong {
        color: var(--primary)
    }

.tips-aside {
    align-self: start
}

.entries-list {
    display: grid;
    gap: var(--s4);
    max-height: 680px;
    overflow-y: auto;
    padding-right: .25rem
}

.entry-card {
    padding: var(--s4);
    background: var(--surface2);
    border: 1px solid var(--divider);
    border-radius: var(--r2)
}

.entry-top {
    display: flex;
    justify-content: space-between;
    gap: var(--s3);
    align-items: flex-start;
    margin-bottom: var(--s2)
}

.entry-name {
    font-weight: 700
}

.entry-loc {
    font-size: var(--tx-xs);
    color: var(--primary);
    margin-top: 2px
}

.entry-msg {
    color: var(--muted);
    font-size: var(--tx-sm);
    font-style: italic;
    margin-bottom: var(--s2)
}

.video-link {
    font-size: var(--tx-sm);
    color: var(--primary);
    font-weight: 700;
    text-decoration: none
}

    .video-link:hover {
        text-decoration: underline
    }

.map-wrap {
    position: relative;
    border-radius: var(--r3);
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(180deg,color-mix(in srgb,var(--phl) 40%,var(--surface)) 0%,var(--surface2) 100%);
    min-height: 260px;
    margin-bottom: var(--s4)
}

.world-svg {
    width: 100%;
    height: 260px
}

.land {
    fill: color-mix(in srgb,var(--primary) 18%,var(--surface));
    stroke: color-mix(in srgb,var(--primary) 35%,transparent);
    stroke-width: 1.2
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid #fff;
    box-shadow: 0 0 0 4px color-mix(in srgb,var(--gold) 20%,transparent)
}

.qr-preview-card {
    padding: var(--s8);
    text-align: center;
    display: grid;
    place-items: center;
    gap: var(--s4);
    align-self: start
}

.qr-card-top {
    display: grid;
    place-items: center;
    gap: var(--s2)
}

.qr-couple-name {
    font-family: var(--font-d);
    font-size: var(--tx-xl);
    font-weight: 600;
    color: var(--text)
}

.qr-venue {
    font-size: var(--tx-xs);
    color: var(--muted)
}

.qr-tagline {
    font-size: var(--tx-sm);
    color: var(--muted)
}

.qr-box-wrap {
    background: #fff;
    padding: 14px;
    border-radius: var(--r2);
    box-shadow: var(--sh-sm)
}

.qr-box {
    display: inline-block
}

.qr-url-label {
    font-size: var(--tx-xs);
    color: var(--faint);
    word-break: break-all;
    max-width: 28ch
}

.url-row {
    display: flex;
    gap: var(--s3);
    flex-wrap: wrap;
    align-items: center
}

.url-input {
    flex: 1 1 260px;
    min-height: 48px
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(14,10,20,.82);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
    padding: var(--s4)
}

    .modal.show {
        display: flex
    }

.modal-card {
    width: min(960px,100%);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r3);
    overflow: hidden;
    position: relative
}

.modal-grid {
    display: grid
}

@media(min-width:700px) {
    .modal-grid {
        grid-template-columns: 1.2fr .8fr
    }
}

.modal-img {
    background: #111;
    display: grid;
    place-items: center;
    min-height: 340px
}

    .modal-img img {
        max-height: 70vh;
        width: auto;
        max-width: 100%
    }

.modal-body {
    padding: var(--s6);
    display: grid;
    gap: var(--s4);
    align-content: start
}

.viewer-name {
    font-family: var(--font-d);
    font-size: var(--tx-xl)
}

.viewer-actions {
    display: flex;
    gap: var(--s3);
    flex-wrap: wrap
}

.modal-close {
    position: absolute;
    top: var(--s4);
    right: var(--s4);
    width: 44px;
    height: 44px;
    border-radius: var(--pill);
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1rem
}

    .modal-close:hover {
        background: rgba(255,255,255,.18)
    }

@media(max-width:560px) {
    .countdown {
        grid-template-columns: repeat(2,1fr)
    }

    .brand-name {
        display: none
    }

    .nav-link {
        padding: var(--s2) var(--s3);
        font-size: var(--tx-xs)
    }
}

@media print {
    body * {
        visibility: hidden
    }

    #printArea, #printArea * {
        visibility: visible
    }

    #printArea {
        position: fixed;
        inset: 0;
        display: grid;
        place-items: center
    }
}


.upload-locked {
    text-align: center;
    padding: var(--space-8);
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    color: var(--muted);
    border: 1px dashed var(--border);
    font-size: var(--tx-sm);
}

h1:focus, h1:focus-visible,
h2:focus, h2:focus-visible {
    outline: none;
}