:root {
    --black: #000000;
    --ink: #080808;
    --panel: #0d0d0d;
    --panel-soft: #121212;
    --gold: #D6A84F;
    --gold-soft: rgba(214, 168, 79, 0.18);
    --white: #ffffff;
    --muted: #b9b4aa;
    --line: rgba(214, 168, 79, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 70% 10%, rgba(214, 168, 79, 0.11), transparent 32rem),
        linear-gradient(180deg, rgba(214, 168, 79, 0.04), transparent 18rem);
    z-index: -1;
}

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

img {
    display: block;
    max-width: 100%;
}

.site-header {
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid transparent;
    transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(0, 0, 0, 0.84);
    border-color: rgba(214, 168, 79, 0.14);
    backdrop-filter: blur(14px);
}

.navbar {
    padding: 0.9rem 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: lowercase;
}

.brand-mark img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.navbar-nav {
    gap: 0.35rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: lowercase;
    transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--gold);
}

.navbar-toggler {
    border-color: rgba(214, 168, 79, 0.32);
    border-radius: 6px;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
}

.language-switch a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 180ms ease;
}

.language-switch a.active,
.language-switch a:hover {
    color: var(--gold);
}

.section-shell {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-section {
    padding-top: 0;
}

.hero-row {
    padding: clamp(7rem, 12vh, 9rem) 0 clamp(3rem, 7vh, 5rem);
}

.hero-glow {
    position: absolute;
    top: 12%;
    right: -12rem;
    width: min(42rem, 90vw);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(214, 168, 79, 0.2), transparent 67%);
    filter: blur(3px);
    opacity: 0.85;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: lowercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 680px;
    margin-bottom: 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 16vw, 8.2rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: lowercase;
}

h2 {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.25rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0;
    text-transform: lowercase;
}

h3 {
    font-size: clamp(1.45rem, 6vw, 2.1rem);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: lowercase;
}

.lead,
.intro-block p,
.release-copy p,
.release-card p {
    color: var(--muted);
}

.lead {
    max-width: 520px;
    margin-bottom: 2rem;
    font-size: clamp(1.15rem, 5vw, 1.55rem);
}

.hero-actions,
.platform-grid,
.card-actions,
.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    min-height: 44px;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: lowercase;
}

.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #080604;
}

.btn-gold:hover {
    background: #f0c66b;
    border-color: #f0c66b;
    color: #080604;
}

.btn-outline-gold,
.platform-grid a,
.card-actions a,
.social-grid a {
    border: 1px solid var(--line);
    color: var(--gold);
    background: rgba(255, 255, 255, 0.02);
}

.btn-outline-gold:hover,
.platform-grid a:hover,
.card-actions a:hover,
.social-grid a:hover {
    border-color: rgba(214, 168, 79, 0.68);
    background: rgba(214, 168, 79, 0.12);
    color: var(--white);
}

.btn-outline-light-soft {
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.82);
}

.btn-outline-light-soft:hover {
    border-color: rgba(255, 255, 255, 0.52);
    color: var(--white);
}

.hero-art {
    position: relative;
    margin-left: auto;
    max-width: 480px;
    transform: rotate(-2deg);
}

.hero-art::before,
.release-cover::before {
    content: "";
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(214, 168, 79, 0.34);
    transform: translate(14px, 14px);
    z-index: -1;
}

.hero-art img,
.release-cover img,
.release-card img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.hero-art img {
    aspect-ratio: 16 / 9;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
}

.intro-block {
    border-left: 1px solid var(--line);
    padding-left: 1.25rem;
}

.intro-block h2 {
    margin-bottom: 1.2rem;
}

.intro-block p {
    max-width: 780px;
    font-size: clamp(1.1rem, 4vw, 1.35rem);
}

.latest-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        var(--ink);
}

.release-cover {
    position: relative;
}

.release-cover img {
    aspect-ratio: 16 / 9;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.68);
}

.release-copy h2 {
    margin-bottom: 0.65rem;
}

.release-subtitle {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: lowercase;
}

.platform-grid {
    margin-top: 1.5rem;
}

.platform-grid a,
.card-actions a,
.social-grid a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 0.7rem 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: lowercase;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.platform-grid a:hover,
.card-actions a:hover,
.social-grid a:hover {
    transform: translateY(-2px);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2.4rem;
}

.release-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(214, 168, 79, 0.2);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(214, 168, 79, 0.055), rgba(255, 255, 255, 0.018));
}

.video-embed {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #050505;
    cursor: pointer;
}

.video-embed img,
.release-video-frame,
.release-card img {
    aspect-ratio: 16 / 9;
    border-radius: 0;
}

.video-embed img,
.release-video-frame {
    width: 100%;
    border: 0;
}

.video-embed img {
    object-fit: cover;
    transition: transform 320ms ease, filter 320ms ease;
}

.video-embed:hover img,
.video-embed:focus-visible img {
    filter: brightness(0.72);
    transform: scale(1.025);
}

.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(214, 168, 79, 0.62);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.62);
    box-shadow: 0 0 42px rgba(214, 168, 79, 0.22);
    transform: translate(-50%, -50%);
    transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.video-play::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 21px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 18px solid var(--gold);
}

.video-embed:hover .video-play,
.video-embed:focus-visible .video-play {
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.78);
    transform: translate(-50%, -50%) scale(1.06);
}

.release-card-body {
    padding: 1.25rem;
}

.release-card-body span {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: lowercase;
}

.release-card-body h3 {
    margin-bottom: 0.55rem;
}

.release-card-body p {
    margin-bottom: 1.1rem;
}

.message-section {
    min-height: 58vh;
    display: grid;
    place-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.78)),
        url("../img/bg-habakkuk3-clean.jpg") center / cover;
}

blockquote {
    max-width: 980px;
    margin: 0 auto;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 10vw, 6.3rem);
    font-weight: 400;
    line-height: 1.02;
    text-align: center;
    text-transform: lowercase;
}

.social-section h2 {
    margin-bottom: 0;
}

.social-grid {
    justify-content: flex-start;
}

.social-grid a {
    min-width: 145px;
    flex: 1 1 145px;
}

.site-footer {
    padding: 2.5rem 0;
    background: #030303;
    color: var(--muted);
}

.footer-line {
    height: 1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.65;
}

.footer-statement {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1rem, 3vw, 1.45rem);
    line-height: 1.15;
    text-transform: lowercase;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-email:hover,
.footer-email:focus {
    border-color: rgba(214, 168, 79, 0.68);
    background: rgba(214, 168, 79, 0.1);
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-email svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.site-footer p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.45);
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 130ms;
}

@media (min-width: 992px) {
    .language-switch {
        margin-top: 0;
        margin-left: 1rem;
    }

    .section-shell {
        padding: 7rem 0;
    }
}

@media (max-width: 575.98px) {
    .navbar-collapse {
        padding: 1rem 0 0.5rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .platform-grid a,
    .card-actions a {
        flex: 1 1 100%;
    }

    .intro-block {
        padding-left: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .copyright {
        text-align: center;
    }
}

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

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