/* =========================================
   GLOBAL
========================================= */

body {
    margin: 0;
    overflow-x: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.25s ease;
}

/* =========================================
   HERO BACKGROUND
========================================= */

.header-hero {
    background: url("/assets/images/bg-forest.webp") center/cover no-repeat;
    padding: 5px 0 0 8px;

    width: 100vw;
    margin-left: calc(50% - 50vw);

    /* Enhanced cinematic depth */
    box-shadow: inset 0 0 160px rgba(0,0,0,0.45);

    position: relative;
}

.hero-inner {
    width: 100%;
}

/* =========================================
   BRAND BLOCK
========================================= */

.brand-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin-left: -30px;
}

.site-logo {
    width: 320px;
    height: auto;
    display: block;
    transform: translateY(12px);
    position: relative;
    z-index: 20;
}

.title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.0;
    transform: translateY(-20px);
    margin-left: -25px;
}

.title-main {
    font-size: 42px;
    color: #d2b48c;
    margin: 0;

    text-shadow:
        0 2px 0 #000,
        0 6px 12px rgba(0,0,0,0.85);
}

.title-sub {
    font-size: 23px;
    color: #b08d57;
    margin: 2px 0;

    text-shadow:
        0 2px 0 #000,
        0 6px 12px rgba(0,0,0,0.85);
}

.title-year {
    font-size: 15px;
    color: #e8e4d8;
    margin-top: 8px;

    text-shadow:
        0 2px 0 #000,
        0 6px 10px rgba(0,0,0,0.75);
}

/* =========================================
   MOBILE (UNCHANGED)
========================================= */

@media (max-width: 768px) {

    .site-logo {
        width: 210px;
        transform: translateY(9px);
    }

    .title-main { font-size: 24px; }
    .title-sub  { font-size: 15px; }
    .title-year { font-size: 12px; }

}

/* =========================================
   DESKTOP FINAL
========================================= */

@media (min-width: 1100px) {

    .header-hero {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 0;
    }

    .hero-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;

        display: flex;
        align-items: center;

        height: 230px;
        min-height: 230px; /* stability lock */
    }

    .brand-block {
        margin-left: 0;
        gap: 0;
    }

    .site-logo {
        width: 286px;
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }

    .site-logo:hover {
        transform: translateY(20px) scale(1.03);
    }

    .title-wrap {
        transform: none;
        margin-left: -8px;
    }

    .title-main { font-size: 34px; }
    .title-sub  { font-size: 19px; }
    .title-year { font-size: 13px; }

}

/* =========================================
   HEADER TRIM DIVIDER
========================================= */

.header-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;

    background: linear-gradient(
        to bottom,
        #8a5e2a 0%,
        #5a3a18 45%,
        #2b1b0c 100%
    );

    box-shadow: inset 0 -2px 3px rgba(0,0,0,0.6);
}