:root {
    --ht-bg: #0b0b0c;
    --ht-bg-soft: #151517;
    --ht-surface: #1d1d20;
    --ht-text: #f6f3ed;
    --ht-muted: #b9b4ab;
    --ht-accent: #c9a86a;
    --ht-accent-strong: #e1c88f;
    --ht-line: rgba(255,255,255,.11);
    --ht-shadow: 0 28px 80px rgba(0,0,0,.35);
    --ht-radius: 18px;
    --ht-container: 1180px;
    --ht-header: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--ht-bg);
    color: var(--ht-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-color: rgba(201,168,106,.55); text-underline-offset: .18em; }
a:hover { color: var(--ht-accent-strong); }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--ht-accent); color: #111; }

h1, h2, h3, h4 {
    margin: 0 0 .55em;
    font-family: Georgia, "Times New Roman", ui-serif, serif;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.025em;
}
h1 { font-size: clamp(3rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
p { margin: 0 0 1.3em; }
blockquote {
    margin: 2.5rem 0;
    padding: 1.1rem 0 1.1rem 1.8rem;
    border-left: 3px solid var(--ht-accent);
    font-family: Georgia, "Times New Roman", ui-serif, serif;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    color: var(--ht-accent-strong);
}

.screen-reader-text,
.ht-skip-link:not(:focus) {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.ht-skip-link:focus {
    position: fixed;
    z-index: 99999;
    left: 1rem;
    top: 1rem;
    padding: .7rem 1rem;
    background: #fff;
    color: #111;
    border-radius: 5px;
}

.ht-container {
    width: min(calc(100% - 40px), var(--ht-container));
    margin-inline: auto;
}
.ht-copy-narrow { max-width: 850px; }
.ht-main { min-height: 60vh; }
.ht-section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.ht-section--soft { background: var(--ht-bg-soft); }
.ht-kicker {
    margin: 0 0 1rem;
    color: var(--ht-accent);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.ht-lead { font-size: clamp(1.25rem, 2.2vw, 1.65rem); color: #ece7dd; }
.ht-meta { color: var(--ht-muted); font-size: .9rem; }
.ht-admin-hint {
    margin-top: 2rem;
    padding: .85rem 1rem;
    border: 1px dashed var(--ht-accent);
    color: var(--ht-accent-strong);
    font-size: .9rem;
}

/* Header */
.ht-site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--ht-header);
    border-bottom: 1px solid var(--ht-line);
    background: rgba(11,11,12,.9);
    backdrop-filter: blur(16px);
}
.admin-bar .ht-site-header { top: 32px; }
.ht-header-inner {
    min-height: var(--ht-header);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}
.ht-branding { min-width: 170px; }
.custom-logo-link { display: inline-block; }
.custom-logo { max-height: 54px; width: auto; }
.ht-wordmark {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: .84;
    letter-spacing: .12em;
    font-size: 1.15rem;
}
.ht-wordmark span { font-weight: 300; }
.ht-wordmark strong { color: var(--ht-accent); font-size: 1.22em; }
.ht-primary-nav { justify-self: center; }
.ht-menu { display: flex; align-items: center; gap: 1.65rem; padding: 0; margin: 0; list-style: none; }
.ht-menu a {
    text-decoration: none;
    color: #e9e5de;
    font-size: .91rem;
    font-weight: 650;
}
.ht-menu a:hover,
.ht-menu .current-menu-item > a,
.ht-menu .current_page_item > a { color: var(--ht-accent-strong); }
.ht-menu-toggle { display: none; }

/* Buttons */
.ht-button,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 49px;
    padding: .78rem 1.25rem;
    border: 1px solid var(--ht-accent);
    border-radius: 999px;
    background: var(--ht-accent);
    color: #111;
    text-decoration: none;
    font-size: .86rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .045em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.ht-button:hover,
.wp-block-button__link:hover { transform: translateY(-2px); background: var(--ht-accent-strong); color: #111; border-color: var(--ht-accent-strong); }
.ht-button--secondary {
    background: transparent;
    color: var(--ht-text);
    border-color: rgba(255,255,255,.34);
}
.ht-button--secondary:hover { background: #fff; border-color: #fff; color: #111; }
.ht-button--small { min-height: 40px; padding: .58rem .9rem; font-size: .74rem; }
.ht-button-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }
.ht-text-link { color: var(--ht-accent-strong); font-weight: 750; text-decoration-thickness: 1px; }

/* Hero */
.ht-hero {
    position: relative;
    isolation: isolate;
    min-height: min(780px, calc(100vh - var(--ht-header)));
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 30%, rgba(201,168,106,.18), transparent 32%),
        radial-gradient(circle at 20% 70%, rgba(255,255,255,.06), transparent 28%),
        linear-gradient(135deg, #101012, #070708 62%);
}
.ht-hero--has-image::before {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    background-image: var(--ht-hero-image);
    background-size: cover;
    background-position: center 28%;
}
.ht-hero-overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,6,7,.95) 0%, rgba(6,6,7,.72) 45%, rgba(6,6,7,.22) 76%, rgba(6,6,7,.36) 100%);
}
.ht-hero:not(.ht-hero--has-image)::after {
    content: "HT";
    position: absolute;
    z-index: -1;
    right: -2vw;
    bottom: -12vw;
    font-family: Georgia, "Times New Roman", serif;
    font-size: min(50vw, 650px);
    line-height: .7;
    color: rgba(255,255,255,.025);
}
.ht-hero-content { padding-block: 6rem; }
.ht-hero-content h1 { max-width: 900px; margin-bottom: .16em; }
.ht-hero-subtitle { color: var(--ht-accent-strong); font-size: clamp(1rem, 2.2vw, 1.5rem); font-weight: 650; letter-spacing: .03em; }
.ht-hero-intro { max-width: 720px; margin: 1.5rem 0 2rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 3.1vw, 2.7rem); line-height: 1.25; }

/* Page headers */
.ht-page-hero {
    position: relative;
    isolation: isolate;
    min-height: 360px;
    display: grid;
    align-items: end;
    padding: 5.5rem 0 4.5rem;
    background:
        radial-gradient(circle at 75% 35%, rgba(201,168,106,.14), transparent 30%),
        linear-gradient(135deg, #151517, #09090a);
    overflow: hidden;
}
.ht-page-hero--image::before {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    background: var(--ht-page-image) center 30% / cover no-repeat;
}
.ht-page-hero-overlay { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(5,5,6,.92), rgba(5,5,6,.54)); }
.ht-page-hero h1 { font-size: clamp(3rem, 6vw, 5.8rem); max-width: 980px; }
.ht-page-hero p:not(.ht-kicker) { max-width: 750px; color: #d1ccc3; font-size: 1.12rem; }

/* Content */
.ht-page-content { max-width: 900px; }
.ht-page-content > h2,
.ht-prose > h2 { margin-top: 2.1em; }
.ht-page-content > h3,
.ht-prose > h3 { margin-top: 1.8em; }
.ht-page-content ul, .ht-page-content ol { padding-left: 1.2rem; }
.ht-front-content > p:empty { display: none; }
.ht-two-callouts { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); }
.ht-two-callouts > div { padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid var(--ht-line); border-radius: var(--ht-radius); background: rgba(255,255,255,.025); }
.ht-credit-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin: 2.5rem 0 4rem; }
.ht-credit-grid > div { padding: 1.4rem; border: 1px solid var(--ht-line); border-radius: var(--ht-radius); background: var(--ht-bg-soft); }
.ht-credit-grid h3 { color: var(--ht-accent-strong); }
.ht-contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin: 2rem 0 4rem; }
.ht-contact-cards > div { padding: 1.6rem; border: 1px solid var(--ht-line); border-radius: var(--ht-radius); background: var(--ht-bg-soft); }
.ht-cta { text-align: center; background: radial-gradient(circle at 50% 20%, rgba(201,168,106,.16), transparent 38%), var(--ht-bg); }
.ht-cta .ht-copy-narrow { margin-inline: auto; }

/* Grids and cards */
.ht-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 2.25rem; }
.ht-card-grid { display: grid; gap: 1.25rem; }
.ht-card-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.ht-card {
    overflow: hidden;
    border: 1px solid var(--ht-line);
    border-radius: var(--ht-radius);
    background: var(--ht-surface);
    box-shadow: 0 1px 0 rgba(255,255,255,.02);
}
.ht-card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #111; }
.ht-card-media--square { aspect-ratio: 1 / 1; }
.ht-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.ht-card:hover .ht-card-media img { transform: scale(1.035); }
.ht-card-body { padding: 1.35rem; }
.ht-card-body h2, .ht-card-body h3 { font-size: 1.6rem; }
.ht-card-body h2 a, .ht-card-body h3 a { text-decoration: none; }
.ht-card-body p { color: #c7c1b8; }
.ht-play {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    padding-left: 3px;
    border-radius: 50%;
    background: rgba(201,168,106,.95);
    color: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Releases */
.ht-split { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(2.2rem, 7vw, 7rem); align-items: center; }
.ht-split--release { max-width: 1050px; }
.ht-release-cover { width: 100%; max-width: 520px; border-radius: var(--ht-radius); overflow: hidden; box-shadow: var(--ht-shadow); }
.ht-release-cover > img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.ht-placeholder-art {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 70% 20%, rgba(201,168,106,.3), transparent 30%), linear-gradient(135deg, #272327, #0e0e10);
    color: rgba(255,255,255,.9);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 5vw, 3.7rem);
    line-height: .9;
    letter-spacing: .08em;
    text-align: center;
}
.ht-placeholder-art--wide { aspect-ratio: 16 / 10; }
.ht-single-release { padding-top: 6rem; }
.ht-media-stack { display: grid; gap: 3rem; }

/* Consent embeds */
.ht-consent-embed {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--ht-line);
    border-radius: var(--ht-radius);
    background: #0d0d0e;
}
.ht-consent-embed--youtube { aspect-ratio: 16 / 9; }
.ht-consent-embed--spotify { min-height: 352px; }
.ht-consent-embed__placeholder { min-height: inherit; height: 100%; display: grid; place-content: center; justify-items: center; gap: .5rem; padding: 2rem; text-align: center; }
.ht-consent-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
.ht-consent-embed--spotify iframe { min-height: 352px; }

/* Forms */
.ht-form { margin-top: 2rem; }
.ht-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 1rem; }
.ht-form label { display: block; font-weight: 700; color: #e5e0d7; }
.ht-form input:not([type="checkbox"]),
.ht-form textarea,
.ht-form select {
    width: 100%;
    margin-top: .45rem;
    padding: .85rem .9rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    outline: none;
    background: #101012;
    color: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.ht-form input:focus,
.ht-form textarea:focus,
.ht-form select:focus { border-color: var(--ht-accent); box-shadow: 0 0 0 3px rgba(201,168,106,.15); }
.ht-checkbox label { font-weight: 500; }
.ht-checkbox input { margin-right: .45rem; }
.ht-form-footnote { margin-top: 1rem; color: var(--ht-muted); font-size: .9rem; }
.ht-honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.ht-form-notice { margin: 0 0 1.5rem; padding: 1rem 1.1rem; border-radius: 10px; border: 1px solid; }
.ht-form-notice--success { border-color: #5ca46f; background: rgba(92,164,111,.12); }
.ht-form-notice--error { border-color: #c86666; background: rgba(200,102,102,.12); }

/* Socials */
.ht-socials { display: flex; flex-wrap: wrap; gap: .55rem; }
.ht-socials a { display: inline-flex; padding: .42rem .72rem; border: 1px solid var(--ht-line); border-radius: 999px; text-decoration: none; font-size: .84rem; }
.ht-socials a:hover { border-color: var(--ht-accent); background: rgba(201,168,106,.08); }
.ht-socials--large a { padding: .62rem .9rem; }

/* Footer */
.ht-site-footer { border-top: 1px solid var(--ht-line); background: #070708; padding-top: 4.5rem; }
.ht-footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 3rem; }
.ht-footer-grid h2 { font-family: inherit; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ht-accent); }
.ht-footer-grid ul { list-style: none; padding: 0; margin: 0; }
.ht-footer-grid li { margin: .35rem 0; }
.ht-footer-grid a { text-decoration: none; }
.ht-wordmark--footer { margin-bottom: 1.25rem; }
.ht-footer-bottom { margin-top: 3.5rem; padding: 1.4rem 0; border-top: 1px solid var(--ht-line); color: #8f8b84; font-size: .83rem; }
.ht-footer-bottom p { margin: 0; }

/* Cookie banner */
.ht-cookie-banner {
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: min(calc(100% - 30px), 980px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.15rem 1.3rem;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 16px;
    background: rgba(20,20,22,.97);
    box-shadow: 0 18px 70px rgba(0,0,0,.55);
    backdrop-filter: blur(18px);
}
.ht-cookie-banner[hidden] { display: none; }
.ht-cookie-banner p { margin: .2rem 0 0; color: #c6c1b8; font-size: .9rem; }
.ht-cookie-actions { display: flex; align-items: center; flex-wrap: wrap; gap: .55rem; flex: 0 0 auto; }
.ht-cookie-actions > a { font-size: .82rem; color: var(--ht-muted); }

/* Empty states / pagination */
.ht-empty-state { padding: 2rem; border: 1px dashed rgba(255,255,255,.18); border-radius: var(--ht-radius); }
.ht-pagination { margin-top: 3rem; }
.nav-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.page-numbers { display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding: 0 .6rem; border: 1px solid var(--ht-line); border-radius: 999px; text-decoration: none; }
.page-numbers.current { background: var(--ht-accent); color: #111; border-color: var(--ht-accent); }
.ht-404 { min-height: 65vh; display: grid; align-items: center; }

/* WordPress core */
.alignwide { width: min(1100px, 100%); margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption, .wp-caption img { max-width: 100%; }

@media (max-width: 1050px) {
    .ht-header-inner { grid-template-columns: auto auto 1fr; gap: 1rem; }
    .ht-menu-toggle {
        justify-self: end;
        grid-column: 3;
        grid-row: 1;
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border: 1px solid var(--ht-line);
        border-radius: 50%;
        background: transparent;
        color: #fff;
        cursor: pointer;
    }
    .ht-menu-toggle__bars,
    .ht-menu-toggle__bars::before,
    .ht-menu-toggle__bars::after { width: 20px; height: 2px; display: block; background: currentColor; content: ""; transition: transform .2s ease, opacity .2s ease; }
    .ht-menu-toggle__bars { position: relative; }
    .ht-menu-toggle__bars::before { position: absolute; top: -6px; }
    .ht-menu-toggle__bars::after { position: absolute; top: 6px; }
    .ht-site-header.is-menu-open .ht-menu-toggle__bars { background: transparent; }
    .ht-site-header.is-menu-open .ht-menu-toggle__bars::before { top: 0; transform: rotate(45deg); }
    .ht-site-header.is-menu-open .ht-menu-toggle__bars::after { top: 0; transform: rotate(-45deg); }
    .ht-primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 0;
        overflow: hidden;
        background: rgba(11,11,12,.98);
        border-bottom: 1px solid var(--ht-line);
        transition: max-height .25s ease;
    }
    .ht-site-header.is-menu-open .ht-primary-nav { max-height: 80vh; overflow-y: auto; }
    .ht-menu { flex-direction: column; align-items: stretch; gap: 0; width: min(calc(100% - 40px), var(--ht-container)); margin: 0 auto; padding: .7rem 0 1.3rem; }
    .ht-menu a { display: block; padding: .8rem 0; border-bottom: 1px solid var(--ht-line); font-size: 1rem; }
    .ht-header-cta { grid-column: 2; grid-row: 1; justify-self: end; min-height: 42px; padding: .65rem .85rem; font-size: .72rem; }
    .ht-card-grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

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

@media (max-width: 720px) {
    :root { --ht-header: 70px; }
    body { font-size: 16px; }
    .ht-container { width: min(calc(100% - 28px), var(--ht-container)); }
    .ht-header-inner { grid-template-columns: 1fr auto; }
    .ht-branding { min-width: 0; }
    .ht-header-cta { display: none; }
    .ht-menu-toggle { grid-column: 2; }
    .ht-wordmark { font-size: .98rem; }
    .ht-hero { min-height: 660px; }
    .ht-hero-overlay { background: linear-gradient(90deg, rgba(6,6,7,.92), rgba(6,6,7,.55)); }
    .ht-hero-content { padding-block: 4.5rem; }
    .ht-section { padding: 4.2rem 0; }
    .ht-page-hero { min-height: 300px; padding-bottom: 3rem; }
    .ht-two-callouts,
    .ht-credit-grid,
    .ht-contact-cards,
    .ht-card-grid--3,
    .ht-split,
    .ht-form-grid,
    .ht-footer-grid { grid-template-columns: 1fr; }
    .ht-split { gap: 2rem; }
    .ht-release-cover { max-width: 420px; }
    .ht-section-heading { align-items: start; flex-direction: column; }
    .ht-cookie-banner { align-items: flex-start; flex-direction: column; }
    .ht-cookie-actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
