/* ---------------------------------------------------------
   Costumed — token system
   Ink navy backdrop (film/darkroom) + parchment archive cards
   + garnet accent (gothic & runway red at once).
   Display: Cormorant Garamond (editorial serif, italic for names)
   UI: Jost (tracked uppercase for labels/nav — museum wall-text feel)
   --------------------------------------------------------- */
:root {
    --ink: #14151f;
    --ink-raised: #1c1e2b;
    --ink-raised-2: #23253483;
    --parchment: #ece5d8;
    --parchment-dim: #d9d0bf;
    --garnet: #7a1f2b;
    --garnet-bright: #a3283a;
    --gold: #b08d57;
    --gold-bright: #d9b978;
    --text-light: #f2ede4;
    --caption: #8a8577;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@view-transition {
    navigation: auto;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--ink);
    color: var(--text-light);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* film-grain texture, laid over everything, dead cheap and very whimsical */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* soft vignette so the ink field doesn't feel like a flat rectangle */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 0%, rgba(122,31,43,0.10), transparent 55%),
                radial-gradient(ellipse at 100% 100%, rgba(176,141,87,0.07), transparent 45%);
}

/* mouse-following spotlight — a little museum-flashlight for the grid */
.spotlight {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    background: radial-gradient(circle 420px at var(--mx, 50%) var(--my, 50%),
                rgba(217, 185, 120, 0.06), transparent 70%);
}
.spotlight.is-active { opacity: 1; }

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

main { position: relative; z-index: 3; }

/* --- header --- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem 1.5rem;
    border-bottom: 1px solid rgba(242, 237, 228, 0.15);
    position: relative;
    z-index: 10;
}

.wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    letter-spacing: 0.35em;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.wordmark::after {
    content: "est. archive";
    position: absolute;
    left: 0.05em;
    bottom: -1.1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--caption);
    white-space: nowrap;
    opacity: 0.8;
}

.site-header nav { display: flex; align-items: center; gap: 0.5rem; }

.site-header nav a {
    margin-left: 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--caption);
    transition: color 0.25s ease;
    position: relative;
    padding-bottom: 0.2rem;
}
.site-header nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--gold);
    transition: right 0.3s var(--ease);
}
.site-header nav a:hover { color: var(--gold-bright); }
.site-header nav a:hover::after { right: 0; }

.nav-surprise {
    margin-left: 1.5rem !important;
    color: var(--gold) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.nav-surprise::before { content: "✦"; font-size: 0.8em; }

/* sprocket-hole trims — a little cinema-strip motif reused across the page */
.sprocket-row {
    height: 12px;
    background-image: radial-gradient(circle, rgba(20,21,31,0.55) 2.6px, transparent 3px);
    background-size: 20px 12px;
    background-repeat: repeat-x;
    background-position: center;
}
.sprocket-row.on-ink {
    background-image: radial-gradient(circle, rgba(242,237,228,0.18) 2.6px, transparent 3px);
}

main { padding: 3rem; max-width: 1200px; margin: 0 auto; }

.site-footer {
    text-align: center;
    padding: 2.4rem 1rem 3rem;
    color: var(--caption);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 3;
}
.site-footer .flourish {
    display: block;
    margin: 0 auto 1.2rem;
    width: 120px;
    height: 14px;
    opacity: 0.55;
}
.footer-links { margin-top: 1rem; }
.footer-links a {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--caption);
    transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-links span { color: var(--caption); margin: 0 0.5rem; opacity: 0.5; }

.footer-credit {
    margin-top: 0.6rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--caption);
    opacity: 0.6;
}
.footer-credit a { color: var(--caption); transition: color 0.2s ease; }
.footer-credit a:hover { color: var(--gold); }
.footer-credit span { margin: 0 0.4rem; opacity: 0.5; }

/* --- legal / long-form text pages --- */
.prose {
    max-width: 680px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
}
.prose p { margin: 0 0 1.2rem; }
.prose p em { color: var(--caption); font-style: italic; }
.prose h2 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--gold-bright);
    margin: 2.2rem 0 0.8rem;
}
.prose h2:first-of-type { margin-top: 0.5rem; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-bright); }

.admin-link { margin-top: 0.6rem; }
.admin-link a {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--caption);
    opacity: 0.5;
    transition: opacity 0.2s ease, color 0.2s ease;
}
.admin-link a:hover { opacity: 1; color: var(--gold); }

/* --- reveal-on-scroll --- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* --- hero / featured look --- */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(242, 237, 228, 0.12);
}
.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.hero-eyebrow::before {
    content: "";
    width: 26px; height: 1px;
    background: var(--gold);
    display: inline-block;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 3.4rem;
    line-height: 1.05;
    margin: 0 0 0.8rem;
}
.hero-sub {
    color: var(--caption);
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
}
.hero-cta {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}
.hero-figure {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--ink-raised);
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
    transform: rotate(1.2deg);
    transition: transform 0.5s var(--ease);
}
.hero-figure:hover { transform: rotate(0deg) scale(1.01); }
.hero-figure img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
    transition: transform 0.8s var(--ease);
}
.hero-figure:hover img { transform: scale(1.06); }
.hero-figure::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(20,21,31,0.65) 100%);
}
.hero-figure .hero-tag {
    position: absolute;
    left: 1rem; bottom: 1rem;
    z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-light);
}

/* --- pill button / links shared style --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    background: transparent;
    padding: 0.65rem 1.3rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow .25s ease;
}
.btn:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -10px rgba(176,141,87,0.55);
}
.btn.ghost { border-color: rgba(242,237,228,0.25); color: var(--caption); }
.btn.ghost:hover { background: rgba(242,237,228,0.08); color: var(--text-light); }

/* --- search + filter bar --- */
.toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}
.search-wrap {
    position: relative;
    flex: 1 1 260px;
    max-width: 360px;
}
.search-wrap input {
    width: 100%;
    background: var(--ink-raised);
    color: var(--text-light);
    border: 1px solid rgba(242, 237, 228, 0.2);
    border-radius: 999px;
    padding: 0.65rem 2.6rem 0.65rem 1.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.search-wrap input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(176,141,87,0.15);
}
.search-wrap::after {
    content: "/";
    position: absolute;
    right: 0.9rem; top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--caption);
    border: 1px solid rgba(242,237,228,0.2);
    border-radius: 4px;
    padding: 0.05rem 0.35rem;
    pointer-events: none;
}
.search-wrap.is-focused::after { opacity: 0; }

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(242, 237, 228, 0.15);
}
.filters form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}
.filters label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--caption);
    margin-right: 0.4rem;
}
.filters select, .filters button {
    background: var(--ink-raised);
    color: var(--text-light);
    border: 1px solid rgba(242, 237, 228, 0.2);
    padding: 0.5rem 0.8rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: border-color 0.2s ease;
}
.filters select:hover, .filters select:focus { border-color: var(--gold); outline: none; }
.filters button {
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.7rem;
    border-color: var(--gold);
    color: var(--gold);
    border-radius: 999px;
}

.result-count {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--caption);
    margin: -1rem 0 1.5rem;
}

/* --- page heading --- */
.page-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
    display: block;
}
.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 2.6rem;
    margin: 0 0 2rem;
    view-transition-name: page-title;
}

/* --- archive grid & cards --- */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
}

.look-card {
    background: var(--parchment);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.look-card:hover {
    transform: translateY(-6px) rotate(-0.4deg);
    box-shadow: 0 24px 40px -18px rgba(0,0,0,0.55);
}
.look-card:nth-child(even):hover { transform: translateY(-6px) rotate(0.4deg); }

.card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--parchment-dim);
}
.card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}
.look-card:hover .card-media img { transform: scale(1.08); }
.card-media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(20,21,31,0.35));
    opacity: 0;
    transition: opacity 0.35s ease;
}
.look-card:hover .card-media::after { opacity: 1; }
.card-media-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1rem;
}
.card-media-placeholder::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.18;
    mix-blend-mode: overlay;
}
.card-media-placeholder::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,21,31,0.05), rgba(20,21,31,0.4));
}
.placeholder-mark {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 3.4rem;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 6px 18px rgba(0,0,0,0.35);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    width: 4.6rem; height: 4.6rem;
    display: flex; align-items: center; justify-content: center;
}

.swatch-strip {
    display: flex;
    height: 10px;
}
.swatch-strip span {
    flex: 1;
    transition: flex-grow 0.3s ease;
}
.look-card:hover .swatch-strip span { flex-grow: 1.6; }

.card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }

.card-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--garnet);
    margin-bottom: 0.5rem;
}
.card-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin: 0 0 0.3rem;
    line-height: 1.15;
}
.card-scene {
    font-size: 0.8rem;
    color: #5a5648;
    margin-bottom: auto;
}
.card-meta {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: #7a7562;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(20,21,31,0.15);
}

.empty-state {
    color: var(--caption);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    padding: 3rem 0;
    text-align: center;
}
.empty-state .btn { margin-top: 1.2rem; font-style: normal; }

/* --- look detail page --- */
.detail-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3.5rem;
}
.polaroid {
    background: var(--parchment);
    padding: 0.8rem 0.8rem 2.2rem;
    box-shadow: 0 24px 48px -20px rgba(0,0,0,0.6);
    transform: rotate(-1.6deg);
    transition: transform 0.4s var(--ease);
    position: relative;
}
.polaroid:hover { transform: rotate(0deg); }
.polaroid::before {
    content: "";
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 70px; height: 22px;
    background: linear-gradient(135deg, rgba(217,185,120,0.55), rgba(217,185,120,0.25));
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.polaroid img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: var(--parchment-dim);
}
.polaroid figcaption {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--ink);
    text-align: center;
    font-size: 0.95rem;
    margin-top: 0.6rem;
}
.polaroid.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.polaroid.no-image .card-media-placeholder { aspect-ratio: 3/4; width: 100%; }

.detail-swatches {
    display: flex;
    gap: 0.6rem;
    margin: 1.6rem 0;
}
.detail-swatches a {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(242,237,228,0.3);
    position: relative;
    transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.detail-swatches a:hover {
    transform: scale(1.25) translateY(-2px);
    box-shadow: 0 8px 16px -6px rgba(0,0,0,0.5);
}
.detail-swatches a::after {
    content: attr(title);
    position: absolute;
    bottom: 130%; left: 50%;
    transform: translateX(-50%);
    background: var(--ink-raised);
    color: var(--text-light);
    border: 1px solid rgba(242,237,228,0.15);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.55rem;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.detail-swatches a:hover::after { opacity: 1; }

.detail-facts { margin-top: 1.5rem; }
.detail-facts dt {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--caption);
    margin-top: 1rem;
}
.detail-facts dd { margin: 0.2rem 0 0; font-size: 1rem; }

.detail-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--garnet);
}

.related-heading {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 2.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.related-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(176,141,87,0.5), transparent);
}

/* --- mood board --- */
.mood-intro {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: -1rem 0 2.5rem;
    color: var(--caption);
    font-size: 0.85rem;
}
.mood-swatch-lg {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(242,237,228,0.25);
    flex-shrink: 0;
    box-shadow: 0 0 0 8px var(--mood-glow, transparent);
}
.mood-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: -1rem 0 2.5rem;
}
.mood-chips a {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(242,237,228,0.25);
    transition: transform 0.2s var(--ease);
}
.mood-chips a:hover, .mood-chips a.is-active {
    transform: scale(1.3);
    box-shadow: 0 0 0 2px var(--ink), 0 0 0 3px var(--gold);
}

/* --- add look form --- */
.entry-form {
    display: grid;
    gap: 1.3rem;
    max-width: 620px;
}
.entry-form > div {
    opacity: 0;
    animation: rise-in 0.5s var(--ease) forwards;
}
.entry-form > div:nth-child(1) { animation-delay: 0.02s; }
.entry-form > div:nth-child(2) { animation-delay: 0.06s; }
.entry-form > div:nth-child(3) { animation-delay: 0.10s; }
.entry-form > div:nth-child(4) { animation-delay: 0.14s; }
.entry-form > div:nth-child(5) { animation-delay: 0.18s; }
.entry-form > div:nth-child(6) { animation-delay: 0.22s; }
.entry-form > div:nth-child(7) { animation-delay: 0.26s; }
.entry-form > div:nth-child(8) { animation-delay: 0.30s; }
.entry-form > div:nth-child(9) { animation-delay: 0.34s; }
.entry-form > div:nth-child(10) { animation-delay: 0.38s; }
.entry-form > div:nth-child(11) { animation-delay: 0.42s; }
.entry-form > div:nth-child(12) { animation-delay: 0.46s; }
.entry-form > div:nth-child(13) { animation-delay: 0.50s; }
.entry-form > div:nth-child(14) { animation-delay: 0.54s; }
.entry-form > div:nth-child(15) { animation-delay: 0.58s; }
.entry-form > div:nth-child(16) { animation-delay: 0.62s; }

/* honeypot — invisible to real visitors and screen readers, present for bots */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
}
@keyframes rise-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.entry-form label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--caption);
    margin-bottom: 0.4rem;
}
.entry-form input[type="text"],
.entry-form input[type="number"],
.entry-form input[type="url"],
.entry-form textarea {
    width: 100%;
    background: var(--ink-raised);
    color: var(--text-light);
    border: 1px solid rgba(242,237,228,0.2);
    border-radius: 6px;
    padding: 0.7rem 0.9rem;
    font-family: 'Jost', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.entry-form input:focus, .entry-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(176,141,87,0.15);
}
.color-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.color-checks label {
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--ink-raised);
    border: 1px solid rgba(242,237,228,0.15);
    border-radius: 999px;
    padding: 0.35rem 0.8rem 0.35rem 0.6rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.color-checks label:hover { border-color: var(--gold); }
.submit-btn {
    justify-self: start;
    background: var(--garnet);
    color: var(--text-light);
    border: none;
    padding: 0.85rem 2.2rem;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.submit-btn:hover {
    background: var(--garnet-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -12px rgba(122,31,43,0.7);
}

/* --- contributor credit, on the look detail page --- */
.contributor-credit {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--caption);
    margin: 0.5rem 0 1.5rem;
}

/* --- admin stats --- */
.stats-block {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(242, 237, 228, 0.15);
}
.stat { min-width: 100px; }
.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: var(--gold-bright);
    line-height: 1.1;
}
.stat-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--caption);
    margin-top: 0.3rem;
}
.stat-wide { flex-basis: 100%; }
.stat-top-pages {
    list-style: none;
    margin: 0.6rem 0 0;
    padding: 0;
    font-size: 0.82rem;
    color: var(--text-light);
}
.stat-top-pages li { margin-bottom: 0.3rem; }
.stat-top-pages a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* --- review queue --- */
.review-list {
    display: grid;
    gap: 1.75rem;
}
.review-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.75rem;
    background: var(--ink-raised);
    border: 1px solid rgba(242, 237, 228, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}
.review-media {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
    background: var(--parchment-dim);
}
.review-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0.6rem 0;
    line-height: 1.5;
}
.review-meta-line {
    font-size: 0.78rem;
    color: var(--caption);
    margin: 0.2rem 0;
}
.review-contributor {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0.8rem 0 0;
}
.review-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

@media (max-width: 800px) {
    .review-item { grid-template-columns: 1fr; }

    main { padding: 2rem 1.2rem; }
    .detail-layout { grid-template-columns: 1fr; }
    .hero { grid-template-columns: 1fr; }
    .hero-figure { order: -1; max-width: 320px; margin: 0 auto; }
    .site-header { padding: 1.5rem; flex-direction: column; gap: 1rem; }
    .wordmark::after { display: none; }
    .toolbar { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
