/* CSS Document */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--thm-font-body);
    color: var(--thm-text);
    background: var(--thm-soft);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.thm-container {
    width: min(var(--thm-container), calc(100% - 40px));
    margin: 0 auto;
}

.thm-site-header {
    background: var(--thm-navy-950);
    color: var(--thm-white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.thm-header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.thm-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.thm-logo img {
    width: 124px;
    height: auto;
    display: block;
}

.thm-primary-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 26px;
}

.thm-primary-nav a {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.88;
}

.thm-primary-nav a:hover {
    color: var(--thm-gold-500);
}

.thm-site-main {
    min-height: 60vh;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: var(--thm-font-heading);
    line-height: 1.1;
    color: var(--thm-navy-900);
}

h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-top: 0;
    line-height: 1.8;
    color: var(--thm-muted);
}

.thm-text-center {
    text-align: center;
}

.thm-section-lg {
    padding: 110px 0;
}

.thm-section-dark {
    background: var(--thm-navy-950);
    color: var(--thm-white);
}

.thm-section-dark h1,
.thm-section-dark h2,
.thm-section-dark h3,
.thm-section-dark h4,
.thm-section-dark h5,
.thm-section-dark h6 {
    color: var(--thm-white);
}

.thm-section-dark p {
    color: rgba(255,255,255,0.78);
}

.thm-grid {
    display: grid;
    gap: 32px;
}

.thm-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.thm-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.thm-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.thm-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--thm-navy-950);
    color: var(--thm-white);
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.thm-header-inner {
    min-height: 78px;
}

.thm-logo {
    min-width: 170px;
    color: var(--thm-white);
    text-align: center;
}

.thm-logo-mark {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    color: var(--thm-white);
}

.thm-logo-main {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.thm-logo-sub {
    display: block;
    margin-top: 2px;
    font-size: 0.68rem;
    letter-spacing: 0.55em;
    color: var(--thm-white);
    opacity: 0.9;
}

.thm-primary-nav a {
    position: relative;
    padding: 30px 0;
}

.thm-primary-nav a:hover,
.thm-primary-nav .current-menu-item > a {
    color: var(--thm-gold-500);
}

.thm-primary-nav .current-menu-item > a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    height: 2px;
    background: var(--thm-gold-500);
}

.thm-header-listen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--thm-gold-500), var(--thm-gold-600));
    color: var(--thm-white);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* =========================================
   FOOTER
========================================= */

.thm-site-footer {
    padding: 70px 0 28px;
    background:
        linear-gradient(
            180deg,
            #041224,
            #020b16
        );

    color: rgba(255,255,255,0.78);
}

.thm-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 42px;
}

.thm-footer-brand {
    max-width: 360px;
}

.thm-footer-logo img {
    width: 220px;
    display: block;
    margin-bottom: 18px;
}

.thm-footer-brand p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    font-size: 0.95rem;
}

.thm-site-footer h3 {
    margin-bottom: 18px;

    color: var(--thm-white);

    font-size: 0.82rem;
    font-weight: 900;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.thm-site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;

    display: grid;
    gap: 12px;
}

.thm-site-footer a {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    transition: color 0.18s ease;
}

.thm-site-footer a:hover {
    color: var(--thm-gold-500);
}

.thm-footer-small {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.48);
    font-size: 0.82rem;
}

@media (max-width: 900px) {

    .thm-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 640px) {

    .thm-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

}


@media (max-width: 900px) {
    .thm-grid-2,
    .thm-grid-3,
    .thm-grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .thm-header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
    }

    .thm-primary-nav ul {
        flex-wrap: wrap;
        gap: 16px;
    }


}