:root {
    --hh-midnight: #071520;
    --hh-archive: #102432;
    --hh-archive-deep: #0b1d29;
    --hh-gold: #c2a14a;
    --hh-cream: #faf6ee;
    --hh-fog: #c7cacb;
    --hh-bronze: #8e6a38;
    --hh-ink: #03090d;
    --hh-line: rgba(194, 161, 74, 0.34);
    --hh-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    --hh-serif: Georgia, "Times New Roman", Times, serif;
    --hh-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
    background: var(--hh-midnight);
}

body.halden-house-page {
    margin: 0 !important;
    background: var(--hh-midnight) !important;
    color: var(--hh-fog) !important;
    font-family: var(--hh-sans) !important;
    font-size: 16px;
    line-height: 1.65;
    color-scheme: dark;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.halden-house-page * {
    box-sizing: border-box;
}

body.halden-house-page img {
    max-width: 100%;
    height: auto;
}

body.halden-house-page a {
    color: inherit;
}

.hh-skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 999999;
    padding: 0.75rem 1rem;
    background: var(--hh-cream);
    color: var(--hh-midnight) !important;
    border-radius: 0.25rem;
    font-weight: 700;
    transition: top 0.2s ease;
}

.hh-skip-link:focus {
    top: 1rem;
}

.hh-site-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 0%, rgba(194, 161, 74, 0.07), transparent 28rem),
        linear-gradient(180deg, #071520 0%, #081722 100%);
}

.hh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(194, 161, 74, 0.16);
    background: rgba(7, 21, 32, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.admin-bar .hh-header {
    top: 32px;
}

.hh-header-inner {
    width: min(1180px, calc(100% - 2.5rem));
    min-height: 104px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hh-brand {
    display: inline-flex;
    align-items: center;
    width: 206px;
    height: 96px;
    text-decoration: none;
    overflow: visible;
}

.hh-brand img {
    display: block;
}

.hh-brand-horizontal {
    width: 182px;
    height: auto;
}

.hh-brand-mark {
    display: none !important;
}

.hh-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hh-nav a {
    position: relative;
    color: var(--hh-cream) !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 700;
}

.hh-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -0.6rem;
    height: 1px;
    background: var(--hh-gold);
    transition: right 0.25s ease;
}

.hh-nav a:hover::after,
.hh-nav a:focus-visible::after {
    right: 0;
}

.hh-menu-toggle {
    display: none;
    border: 1px solid var(--hh-line);
    background: transparent;
    color: var(--hh-cream);
    padding: 0.7rem 0.8rem;
    border-radius: 999px;
    align-items: center;
    gap: 0.65rem;
    font: inherit;
}

.hh-menu-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    font-weight: 700;
}

.hh-menu-icon {
    width: 18px;
    display: grid;
    gap: 3px;
}

.hh-menu-icon i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hh-menu-toggle[aria-expanded="true"] .hh-menu-icon i:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.hh-menu-toggle[aria-expanded="true"] .hh-menu-icon i:nth-child(2) {
    opacity: 0;
}

.hh-menu-toggle[aria-expanded="true"] .hh-menu-icon i:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

.hh-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 104px);
    display: grid;
    align-items: center;
    border-bottom: 1px solid rgba(194, 161, 74, 0.12);
}

.hh-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 80%);
}

.hh-ambient {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.27;
    pointer-events: none;
}

.hh-ambient-one {
    width: 440px;
    height: 440px;
    background: rgba(194, 161, 74, 0.23);
    top: -180px;
    right: 12%;
}

.hh-ambient-two {
    width: 360px;
    height: 360px;
    background: rgba(38, 80, 106, 0.45);
    bottom: -180px;
    left: -100px;
}

.hh-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 6.5rem 0 7rem;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.hh-eyebrow,
.hh-kicker {
    margin: 0 0 1.15rem;
    color: var(--hh-gold) !important;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hh-hero h1,
.hh-detail h1 {
    margin: 0;
    color: var(--hh-cream) !important;
    font-family: var(--hh-serif) !important;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 0.96;
    text-transform: uppercase;
}

.hh-hero h1 {
    font-size: clamp(4.8rem, 10vw, 9.2rem);
}

.hh-hero-lede {
    max-width: 39rem;
    margin: 2rem 0 0;
    color: var(--hh-fog) !important;
    font-family: var(--hh-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    line-height: 1.55;
}

.hh-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.hh-button {
    min-height: 48px;
    padding: 0.82rem 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 800;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hh-button:hover,
.hh-button:focus-visible {
    transform: translateY(-2px);
}

.hh-button-primary {
    background: var(--hh-gold);
    color: #0a151d !important;
}

.hh-button-primary:hover,
.hh-button-primary:focus-visible {
    background: #d3b761;
}

.hh-button-quiet {
    border-color: rgba(250, 246, 238, 0.26);
    color: var(--hh-cream) !important;
    background: rgba(255, 255, 255, 0.025);
}

.hh-button-quiet:hover,
.hh-button-quiet:focus-visible {
    border-color: var(--hh-gold);
}

.hh-hero-art {
    position: relative;
    min-height: 600px;
    perspective: 1400px;
}

.hh-arch-frame {
    position: absolute;
    width: 72%;
    aspect-ratio: 0.72;
    right: 7%;
    top: 2%;
    border: 1px solid rgba(194, 161, 74, 0.45);
    border-radius: 50% 50% 1rem 1rem / 26% 26% 1rem 1rem;
    box-shadow:
        inset 0 0 0 14px rgba(194, 161, 74, 0.025),
        0 0 90px rgba(194, 161, 74, 0.08);
}

.hh-stack-cover {
    position: absolute;
    width: 43%;
    display: block;
    border-radius: 0.3rem;
    box-shadow: var(--hh-shadow);
    transition: transform 0.35s ease, filter 0.35s ease;
    transform-origin: center bottom;
}

.hh-stack-cover img {
    display: block;
    width: 100%;
    border-radius: 0.28rem;
}

.hh-stack-cover:hover,
.hh-stack-cover:focus-visible {
    z-index: 20;
    filter: brightness(1.07);
}

.hh-stack-cover-weight {
    left: 3%;
    top: 20%;
    transform: rotate(-8deg) translateZ(-40px);
}

.hh-stack-cover-weight:hover,
.hh-stack-cover-weight:focus-visible {
    transform: rotate(-3deg) translateY(-10px) scale(1.035);
}

.hh-stack-cover-fading {
    right: 0;
    top: 17%;
    transform: rotate(8deg) translateZ(-20px);
}

.hh-stack-cover-fading:hover,
.hh-stack-cover-fading:focus-visible {
    transform: rotate(3deg) translateY(-10px) scale(1.035);
}

.hh-stack-cover-rewind {
    width: 46%;
    left: 28%;
    top: 6%;
    z-index: 4;
    transform: translateZ(40px);
}

.hh-stack-cover-rewind:hover,
.hh-stack-cover-rewind:focus-visible {
    transform: translateY(-12px) translateZ(40px) scale(1.035);
}

.hh-section {
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 8rem 0;
}

.hh-section-heading {
    max-width: 760px;
    margin-bottom: 3.5rem;
}

.hh-section-heading h2,
.hh-about h2,
.hh-updates h2,
.hh-more-books h2 {
    margin: 0;
    color: var(--hh-cream) !important;
    font-family: var(--hh-serif) !important;
    font-weight: 400;
    line-height: 1.12;
    font-size: clamp(2.45rem, 5vw, 4.9rem);
}

.hh-section-heading > p:last-child {
    max-width: 630px;
    margin: 1.35rem 0 0;
    color: var(--hh-fog) !important;
    font-size: 1.05rem;
}

.hh-book-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.4rem, 3vw, 2.6rem);
}

.hh-book-card {
    min-width: 0;
}

.hh-cover-link,
.hh-detail-cover {
    position: relative;
    display: block;
}

.hh-cover-link {
    aspect-ratio: 0.65;
    border-radius: 0.35rem;
    background: var(--hh-archive);
    box-shadow: var(--hh-shadow);
    overflow: visible;
    transition: transform 0.32s ease;
}

.hh-cover-link:hover,
.hh-cover-link:focus-visible {
    transform: translateY(-8px);
}

.hh-cover-link img,
.hh-detail-cover img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0.35rem;
}

.hh-cover-glow {
    position: absolute;
    z-index: 0;
    inset: 8% 6% -4%;
    background: rgba(194, 161, 74, 0.14);
    filter: blur(34px);
    opacity: 0.7;
}

.hh-book-card-copy {
    padding: 1.6rem 0.2rem 0;
}

.hh-release {
    margin: 0;
    color: var(--hh-gold) !important;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.68rem;
    font-weight: 800;
}

.hh-book-card h3 {
    margin: 0.7rem 0 0.8rem;
    color: var(--hh-cream) !important;
    font-family: var(--hh-serif) !important;
    font-size: clamp(1.65rem, 2.2vw, 2.2rem);
    font-weight: 400;
    line-height: 1.12;
}

.hh-book-card h3 a {
    text-decoration: none;
}

.hh-book-card p:not(.hh-release) {
    margin: 0;
    color: var(--hh-fog) !important;
}

.hh-text-link {
    display: inline-flex;
    gap: 0.55rem;
    margin-top: 1.15rem;
    color: var(--hh-cream) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.hh-text-link span {
    color: var(--hh-gold);
    transition: transform 0.2s ease;
}

.hh-text-link:hover span,
.hh-text-link:focus-visible span {
    transform: translateX(4px);
}

.hh-about {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    border-top: 1px solid rgba(194, 161, 74, 0.15);
}

.hh-about-mark {
    position: relative;
    display: grid;
    place-items: center;
}

.hh-about-mark::before {
    content: "";
    position: absolute;
    inset: 14% 5%;
    border-radius: 50% 50% 1rem 1rem / 28% 28% 1rem 1rem;
    background: rgba(16, 36, 50, 0.75);
    border: 1px solid rgba(194, 161, 74, 0.16);
}

.hh-about-mark img {
    position: relative;
    z-index: 2;
    width: min(80%, 390px);
    filter: drop-shadow(0 30px 45px rgba(0,0,0,0.4));
}

.hh-about-copy p:not(.hh-kicker) {
    max-width: 660px;
    margin: 1.35rem 0 0;
    font-size: 1.08rem;
}

.hh-updates {
    width: 100%;
    max-width: none;
    padding: 0;
    background:
        linear-gradient(115deg, rgba(194,161,74,0.08), transparent 42%),
        var(--hh-archive-deep);
    border-top: 1px solid rgba(194, 161, 74, 0.16);
    border-bottom: 1px solid rgba(194, 161, 74, 0.16);
}

.hh-updates-inner {
    width: min(920px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 6.5rem 0;
    text-align: center;
}

.hh-updates-inner > p:not(.hh-kicker) {
    max-width: 650px;
    margin: 1.25rem auto 0;
}

.hh-coming-note {
    width: fit-content;
    margin: 2.2rem auto 0;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(194, 161, 74, 0.3);
    border-radius: 999px;
    color: var(--hh-cream);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.67rem;
    font-weight: 800;
}

.hh-coming-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--hh-gold);
    box-shadow: 0 0 0 5px rgba(194,161,74,0.1);
}

.hh-detail {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(194, 161, 74, 0.14);
}

.hh-detail::before {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    right: -320px;
    top: -310px;
    border-radius: 50%;
    background: rgba(194,161,74,0.08);
    filter: blur(80px);
}

.hh-detail-inner {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 2.5rem));
    min-height: calc(100vh - 86px);
    margin: 0 auto;
    padding: 6rem 0 7rem;
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(3.5rem, 8vw, 8rem);
    align-items: center;
}

.hh-detail-cover-wrap {
    position: relative;
}

.hh-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
    color: var(--hh-fog) !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
    font-weight: 800;
}

.hh-back-link span {
    color: var(--hh-gold);
    transition: transform 0.2s ease;
}

.hh-back-link:hover span,
.hh-back-link:focus-visible span {
    transform: translateX(-4px);
}

.hh-detail-cover {
    width: min(100%, 430px);
    margin: 0 auto;
    aspect-ratio: 0.65;
    box-shadow: var(--hh-shadow);
}

.hh-detail h1 {
    font-size: clamp(3.4rem, 7vw, 7.1rem);
    text-transform: none;
    letter-spacing: 0.01em;
}

.hh-detail-date {
    margin: 1.35rem 0 0;
    color: var(--hh-gold) !important;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    font-weight: 800;
}

.hh-detail-rule {
    width: min(230px, 44%);
    height: 1px;
    margin: 2rem 0;
    background: linear-gradient(90deg, var(--hh-gold), transparent);
}

.hh-description {
    max-width: 660px;
    color: var(--hh-fog);
    font-size: 1.08rem;
}

.hh-description p {
    margin: 0 0 1.15rem;
}

.hh-description .hh-emphasis {
    color: var(--hh-cream) !important;
    font-family: var(--hh-serif);
    font-size: 1.2em;
    font-weight: 700;
}

.hh-retailer-placeholder {
    display: inline-flex;
    margin-top: 1rem;
    padding: 0.9rem 1.1rem;
    border-left: 2px solid var(--hh-gold);
    background: rgba(16, 36, 50, 0.75);
    color: var(--hh-fog);
    font-size: 0.88rem;
}

.hh-section-heading-compact {
    margin-bottom: 2.4rem;
}

.hh-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.hh-mini-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1.2rem;
    align-items: center;
    padding: 1rem;
    background: rgba(16, 36, 50, 0.72);
    border: 1px solid rgba(194, 161, 74, 0.14);
    border-radius: 0.45rem;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.hh-mini-card:hover,
.hh-mini-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(194, 161, 74, 0.46);
}

.hh-mini-card img {
    width: 110px;
    aspect-ratio: 0.65;
    object-fit: cover;
    border-radius: 0.2rem;
    box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}

.hh-mini-card span {
    display: grid;
    gap: 0.45rem;
}

.hh-mini-card small {
    color: var(--hh-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.65rem;
    font-weight: 800;
}

.hh-mini-card strong {
    color: var(--hh-cream);
    font-family: var(--hh-serif);
    font-size: 1.45rem;
    line-height: 1.15;
    font-weight: 400;
}

.hh-footer {
    background: #050f17;
    border-top: 1px solid rgba(194, 161, 74, 0.18);
}

.hh-footer-inner {
    width: min(1180px, calc(100% - 2.5rem));
    min-height: 190px;
    margin: 0 auto;
    padding: 2.8rem 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
        "mark copy publisher"
        "mark legal legal";
    align-items: center;
    gap: 0.7rem 1.4rem;
}

.hh-footer-brand {
    grid-area: mark;
    width: 58px;
    display: block;
}

.hh-footer-brand img {
    display: block;
}

.hh-footer-copy {
    grid-area: copy;
    display: grid;
    gap: 0.15rem;
}

.hh-footer-copy strong {
    color: var(--hh-cream);
    font-family: var(--hh-serif);
    font-size: 1.2rem;
    font-weight: 400;
}

.hh-footer-copy span,
.hh-footer-publisher span,
.hh-footer-legal {
    color: rgba(199, 202, 203, 0.7);
    font-size: 0.78rem;
}

.hh-footer-publisher {
    grid-area: publisher;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
}

.hh-footer-publisher a {
    color: var(--hh-fog) !important;
    text-decoration-color: rgba(194, 161, 74, 0.55);
    text-underline-offset: 0.2em;
}

.hh-footer-publisher a:hover,
.hh-footer-publisher a:focus-visible {
    color: var(--hh-cream) !important;
}

.hh-footer-legal {
    grid-area: legal;
}

body.halden-house-page :focus-visible {
    outline: 2px solid var(--hh-gold);
    outline-offset: 4px;
}

@media (max-width: 960px) {
    .hh-hero-inner {
        grid-template-columns: 1fr;
        padding-top: 5rem;
        text-align: center;
    }

    .hh-hero-copy {
        display: grid;
        justify-items: center;
    }

    .hh-hero-art {
        width: min(620px, 100%);
        min-height: 530px;
        margin: 0 auto;
    }

    .hh-book-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hh-book-card:last-child {
        grid-column: 1 / -1;
        width: min(50%, 360px);
        justify-self: center;
    }

    .hh-about {
        grid-template-columns: 0.72fr 1.28fr;
        gap: 3rem;
    }

    .hh-detail-inner {
        grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
        gap: 3rem;
    }
}

@media (max-width: 782px) {
    .admin-bar .hh-header {
        top: 46px;
    }
}

@media (max-width: 740px) {
    .hh-header-inner {
        min-height: 74px;
        width: min(100% - 1.5rem, 1180px);
    }

    .hh-brand {
        width: 46px;
        height: 62px;
        align-items: center;
        justify-content: center;
    }

    .hh-brand-horizontal {
        display: none !important;
    }

    .hh-brand-mark {
        display: block !important;
        width: 40px;
        height: auto;
    }

    .hh-menu-toggle {
        display: inline-flex;
    }

    .hh-nav {
        position: absolute;
        left: 0.75rem;
        right: 0.75rem;
        top: calc(100% + 0.55rem);
        display: grid;
        gap: 0;
        padding: 0.65rem;
        border: 1px solid rgba(194, 161, 74, 0.24);
        border-radius: 0.5rem;
        background: rgba(7, 21, 32, 0.98);
        box-shadow: 0 28px 60px rgba(0,0,0,0.46);
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .hh-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
    }

    .hh-nav a {
        padding: 1rem;
        border-bottom: 1px solid rgba(194, 161, 74, 0.11);
    }

    .hh-nav a:last-child {
        border-bottom: 0;
    }

    .hh-nav a::after {
        display: none;
    }

    .hh-hero {
        min-height: auto;
    }

    .hh-hero-inner {
        width: min(100% - 1.5rem, 1180px);
        padding: 4.2rem 0 5rem;
        gap: 3.4rem;
    }

    .hh-hero h1 {
        font-size: clamp(4.1rem, 22vw, 6.3rem);
    }

    .hh-hero-lede {
        font-size: 1.16rem;
    }

    .hh-actions {
        justify-content: center;
    }

    .hh-hero-art {
        min-height: 430px;
    }

    .hh-stack-cover {
        width: 44%;
    }

    .hh-stack-cover-rewind {
        width: 48%;
        left: 26%;
    }

    .hh-section {
        width: min(100% - 1.5rem, 1180px);
        padding: 5.5rem 0;
    }

    .hh-book-grid {
        grid-template-columns: 1fr;
        gap: 3.8rem;
    }

    .hh-book-card,
    .hh-book-card:last-child {
        grid-column: auto;
        width: min(100%, 410px);
        justify-self: center;
    }

    .hh-book-card-copy {
        text-align: center;
    }

    .hh-about {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hh-about-mark {
        order: 2;
    }

    .hh-about-copy {
        display: grid;
        justify-items: center;
    }

    .hh-updates-inner {
        width: min(100% - 1.5rem, 920px);
        padding: 5rem 0;
    }

    .hh-detail-inner {
        width: min(100% - 1.5rem, 1120px);
        min-height: 0;
        padding: 4.2rem 0 5.5rem;
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .hh-detail-cover-wrap {
        width: min(100%, 410px);
        margin: 0 auto;
    }

    .hh-detail-copy {
        text-align: center;
    }

    .hh-detail-rule {
        margin-left: auto;
        margin-right: auto;
        background: linear-gradient(90deg, transparent, var(--hh-gold), transparent);
    }

    .hh-description {
        margin: 0 auto;
    }

    .hh-mini-grid {
        grid-template-columns: 1fr;
    }

    .hh-footer-inner {
        width: min(100% - 1.5rem, 1180px);
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "mark copy"
            "publisher publisher"
            "legal legal";
        align-items: center;
    }

    .hh-footer-publisher {
        margin-top: 1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 430px) {
    .hh-actions {
        width: 100%;
        display: grid;
    }

    .hh-button {
        width: 100%;
    }

    .hh-hero-art {
        min-height: 355px;
    }

    .hh-stack-cover-weight {
        left: 0;
    }

    .hh-stack-cover-fading {
        right: 0;
    }

    .hh-section-heading h2,
    .hh-about h2,
    .hh-updates h2,
    .hh-more-books h2 {
        font-size: 2.5rem;
    }

    .hh-detail h1 {
        font-size: 3.15rem;
    }

    .hh-mini-card {
        grid-template-columns: 88px 1fr;
        gap: 0.9rem;
    }

    .hh-mini-card img {
        width: 88px;
    }

    .hh-mini-card strong {
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* ================================================================
   v1.1.0 — cinematic evidence-desk hero + mobile overflow repair
   ================================================================ */
.hh-hero-cinematic {
    min-height: max(690px, calc(100svh - 104px));
    background:
        linear-gradient(90deg, rgba(3, 10, 15, 0.18) 0%, rgba(3, 10, 15, 0.04) 52%, rgba(3, 10, 15, 0.28) 100%),
        radial-gradient(circle at 72% 24%, rgba(194, 161, 74, 0.13), transparent 31rem),
        radial-gradient(circle at 15% 72%, rgba(33, 73, 95, 0.28), transparent 32rem),
        linear-gradient(180deg, #081822 0%, #06131c 100%);
}

.hh-hero-cinematic::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 67%, rgba(1, 7, 11, 0.72) 100%),
        radial-gradient(ellipse at 50% 112%, rgba(0, 0, 0, 0.64), transparent 56%);
}

.hh-hero-cinematic .hh-hero-inner {
    width: min(1280px, calc(100% - 3rem));
    min-width: 0;
    padding: 4.7rem 0 5.2rem;
    grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
    gap: clamp(1.5rem, 4vw, 4.5rem);
}

.hh-hero-cinematic .hh-hero-copy,
.hh-hero-cinematic .hh-hero-collage {
    min-width: 0;
    max-width: 100%;
}

.hh-hero-cinematic .hh-hero-copy {
    position: relative;
    z-index: 8;
}

.hh-hero-cinematic .hh-eyebrow {
    margin-bottom: 1.6rem;
    line-height: 1.75;
}

.hh-hero-cinematic h1 {
    max-width: 100%;
    font-size: clamp(4rem, 6.6vw, 7rem);
    line-height: 0.92;
    letter-spacing: 0.055em;
    white-space: nowrap;
}

.hh-name-first,
.hh-name-last {
    display: inline;
}

.hh-title-ornament {
    width: min(355px, 78%);
    margin: 1.8rem 0 1.75rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.9rem;
    color: var(--hh-gold);
}

.hh-title-ornament span {
    height: 1px;
    background: linear-gradient(90deg, rgba(194, 161, 74, 0.08), rgba(194, 161, 74, 0.72));
}

.hh-title-ornament span:last-child {
    background: linear-gradient(90deg, rgba(194, 161, 74, 0.72), rgba(194, 161, 74, 0.08));
}

.hh-title-ornament i {
    font-style: normal;
    font-size: 0.66rem;
    filter: drop-shadow(0 0 7px rgba(194, 161, 74, 0.5));
}

.hh-hero-tagline {
    margin: 0;
    color: var(--hh-cream) !important;
    font-family: var(--hh-serif);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    letter-spacing: 0.035em;
}

.hh-hero-cinematic .hh-hero-lede {
    max-width: 37rem;
    margin-top: 0.8rem;
    font-family: var(--hh-sans);
    font-size: clamp(1rem, 1.5vw, 1.13rem);
    line-height: 1.72;
}

.hh-hero-cinematic .hh-actions {
    margin-top: 2rem;
}

.hh-hero-cinematic .hh-button {
    min-width: 220px;
    border-radius: 0.12rem;
}

.hh-hero-collage {
    position: relative;
    min-height: 610px;
    isolation: isolate;
    perspective: 1200px;
}

.hh-hero-collage::before {
    content: "";
    position: absolute;
    z-index: -4;
    inset: 5% 0 1% 4%;
    border: 1px solid rgba(194, 161, 74, 0.12);
    background:
        radial-gradient(circle at 70% 28%, rgba(194, 161, 74, 0.13), transparent 37%),
        linear-gradient(145deg, rgba(21, 34, 42, 0.9), rgba(6, 15, 21, 0.96));
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.46);
    transform: rotate(-1.4deg);
}

.hh-collage-paper {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(118, 100, 67, 0.34);
    background:
        repeating-linear-gradient(180deg, transparent 0 29px, rgba(63, 57, 47, 0.11) 29px 30px),
        radial-gradient(circle at 25% 20%, rgba(117, 90, 49, 0.16), transparent 40%),
        #d8d0bd;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
    opacity: 0.62;
}

.hh-collage-paper::after {
    content: "SEPTEMBER 1994  ·  MEMORY / EVIDENCE / CONSEQUENCE";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 12%;
    color: rgba(46, 39, 31, 0.55);
    font-family: var(--hh-serif);
    font-size: clamp(0.55rem, 0.8vw, 0.78rem);
    letter-spacing: 0.11em;
    line-height: 2.25;
}

.hh-collage-paper-one {
    width: 58%;
    height: 63%;
    top: 3%;
    right: 13%;
    transform: rotate(-7deg);
}

.hh-collage-paper-two {
    width: 43%;
    height: 58%;
    right: -1%;
    top: 9%;
    transform: rotate(9deg);
    opacity: 0.35;
}

.hh-collage-film {
    position: absolute;
    z-index: 0;
    width: 53%;
    height: 120px;
    left: 3%;
    top: 46%;
    transform: rotate(14deg);
    background:
        repeating-linear-gradient(90deg, transparent 0 28px, rgba(226, 200, 128, 0.2) 28px 32px),
        repeating-linear-gradient(90deg, #0b0c0d 0 62px, #17191a 62px 67px);
    border-top: 14px solid #050607;
    border-bottom: 14px solid #050607;
    box-shadow: 0 20px 35px rgba(0,0,0,0.45);
    opacity: 0.78;
}

.hh-collage-film::before,
.hh-collage-film::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(90deg, transparent 0 17px, #827452 17px 25px);
}

.hh-collage-film::before { top: -11px; }
.hh-collage-film::after { bottom: -11px; }

.hh-collage-figure {
    position: absolute;
    z-index: 1;
    width: 105px;
    height: 270px;
    left: 13%;
    bottom: 5%;
    opacity: 0.58;
    filter: blur(0.4px) drop-shadow(0 20px 22px rgba(0,0,0,0.75));
    background:
        radial-gradient(circle at 50% 12%, #020506 0 13%, transparent 14%),
        linear-gradient(92deg, transparent 24%, #020506 25% 75%, transparent 76%) 50% 34% / 100% 39% no-repeat,
        linear-gradient(72deg, transparent 20%, #020506 21% 44%, transparent 45%) 16% 100% / 52% 58% no-repeat,
        linear-gradient(108deg, transparent 20%, #020506 21% 44%, transparent 45%) 84% 100% / 52% 58% no-repeat;
}

.hh-collage-pen {
    position: absolute;
    z-index: 5;
    width: 55%;
    height: 28px;
    right: -5%;
    top: 33%;
    border-radius: 999px 0 0 999px;
    transform: rotate(-43deg);
    background: linear-gradient(180deg, #1e2225 0%, #050708 47%, #15191b 100%);
    box-shadow: 0 17px 30px rgba(0,0,0,0.48);
}

.hh-collage-pen::before {
    content: "";
    position: absolute;
    right: -35px;
    top: 5px;
    border-left: 38px solid #141719;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.hh-collage-pen::after {
    content: "";
    position: absolute;
    width: 52%;
    height: 2px;
    left: 18%;
    top: 6px;
    background: linear-gradient(90deg, transparent, rgba(194,161,74,0.66), transparent);
}

.hh-feature-polaroid {
    position: absolute;
    z-index: 4;
    width: min(58%, 420px);
    right: 7%;
    top: 11%;
    padding: 0.8rem 0.8rem 2.8rem;
    display: block;
    color: #17242d !important;
    text-decoration: none;
    background: #ece8df;
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: 0 35px 75px rgba(0,0,0,0.55);
    transform: rotate(4.5deg) translateZ(28px);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hh-feature-polaroid::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.46), transparent 28%, rgba(78,67,50,0.12));
    mix-blend-mode: multiply;
}

.hh-feature-polaroid:hover,
.hh-feature-polaroid:focus-visible {
    transform: rotate(1.8deg) translateY(-8px) translateZ(36px);
    filter: brightness(1.035);
}

.hh-feature-polaroid img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 0.887;
    object-fit: cover;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.11);
}

.hh-feature-polaroid span {
    position: absolute;
    z-index: 2;
    left: 1rem;
    right: 1rem;
    bottom: 0.88rem;
    color: #26343b;
    text-align: center;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

@media (max-width: 960px) {
    .hh-hero-cinematic {
        min-height: auto;
    }

    .hh-hero-cinematic .hh-hero-inner {
        grid-template-columns: 1fr;
        width: min(100% - 2rem, 760px);
        padding: 4.5rem 0 3.8rem;
        gap: 2.2rem;
        text-align: center;
    }

    .hh-hero-cinematic .hh-hero-copy {
        display: grid;
        justify-items: center;
    }

    .hh-hero-cinematic h1 {
        font-size: clamp(4rem, 11vw, 6.1rem);
    }

    .hh-title-ornament {
        margin-left: auto;
        margin-right: auto;
    }

    .hh-hero-cinematic .hh-hero-lede {
        margin-left: auto;
        margin-right: auto;
    }

    .hh-hero-collage {
        width: min(660px, 100%);
        min-height: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 740px) {
    .hh-site-shell,
    .hh-hero,
    .hh-hero-inner,
    .hh-hero-copy,
    .hh-hero-collage {
        max-width: 100%;
    }

    .hh-hero-cinematic .hh-hero-inner {
        width: min(100% - 1.5rem, 680px);
        padding: 3.6rem 0 2.7rem;
        gap: 1.35rem;
    }

    .hh-hero-cinematic .hh-eyebrow {
        margin-bottom: 1.2rem;
        font-size: 0.64rem;
        letter-spacing: 0.2em;
    }

    .hh-hero-cinematic h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(3.15rem, 16vw, 4.6rem);
        line-height: 0.9;
        letter-spacing: 0.035em;
        white-space: normal;
        overflow-wrap: normal;
    }

    .hh-name-first,
    .hh-name-last {
        display: block;
    }

    .hh-name-first {
        margin-bottom: 0.16em;
    }

    .hh-title-ornament {
        width: min(285px, 82%);
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .hh-hero-tagline {
        font-size: 1.05rem;
    }

    .hh-hero-cinematic .hh-hero-lede {
        max-width: 34rem;
        margin-top: 0.7rem;
        font-size: 1.03rem;
        line-height: 1.62;
    }

    .hh-hero-cinematic .hh-actions {
        width: 100%;
        margin-top: 1.55rem;
    }

    .hh-hero-cinematic .hh-button {
        width: min(100%, 330px);
    }

    .hh-hero-collage {
        min-height: 405px;
    }

    .hh-hero-collage::before {
        inset: 8% 3% 1% 3%;
    }

    .hh-collage-paper-one {
        width: 64%;
        height: 63%;
        right: 12%;
    }

    .hh-collage-paper-two {
        right: 3%;
    }

    .hh-collage-film {
        width: 58%;
        height: 85px;
        top: 49%;
    }

    .hh-collage-figure {
        width: 72px;
        height: 194px;
        left: 10%;
        bottom: 5%;
    }

    .hh-collage-pen {
        width: 48%;
        right: -4%;
        top: 34%;
        height: 20px;
    }

    .hh-feature-polaroid {
        width: min(66%, 360px);
        right: 7%;
        top: 10%;
        padding: 0.56rem 0.56rem 2.25rem;
    }

    .hh-feature-polaroid span {
        bottom: 0.67rem;
        font-size: 0.49rem;
        letter-spacing: 0.11em;
    }
}

@media (max-width: 430px) {
    .hh-hero-cinematic .hh-hero-inner {
        width: min(100% - 1.25rem, 680px);
        padding-top: 3rem;
    }

    .hh-hero-cinematic h1 {
        font-size: clamp(3rem, 16vw, 3.9rem);
    }

    .hh-hero-cinematic .hh-hero-lede {
        font-size: 0.98rem;
    }

    .hh-hero-collage {
        min-height: 335px;
    }

    .hh-collage-paper::after {
        display: none;
    }

    .hh-collage-film {
        height: 66px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }

    .hh-collage-film::before { top: -8px; }
    .hh-collage-film::after { bottom: -8px; }

    .hh-collage-figure {
        width: 58px;
        height: 158px;
    }

    .hh-collage-pen {
        height: 16px;
    }

    .hh-collage-pen::before {
        right: -27px;
        top: 3px;
        border-left-width: 30px;
        border-top-width: 6px;
        border-bottom-width: 6px;
    }

    .hh-feature-polaroid {
        width: min(69%, 300px);
        right: 6%;
        padding: 0.43rem 0.43rem 1.95rem;
    }

    .hh-feature-polaroid span {
        left: 0.35rem;
        right: 0.35rem;
        bottom: 0.52rem;
        font-size: 0.43rem;
    }
}
