/* =========================================================
   THE SM RECORDS — Updated Premium Theme Config
   ========================================================= */
:root {
    /* Main Backgrounds & Utility Panels */
    --cream: #F8F9FA;
    /* Ultra-clean, modern minimal off-white */

    /* Logo Brand Colors (Dark Charcoal Gray from "The SM Records" Text) */
    --purple: #2D2E30;
    /* Primary Headline / Dark Bold text from "The SM" */
    --navy: #4A4C4E;
    /* Secondary heading / Body text from "Records" */
    --navy-deep: #1A1B1C;
    /* Deep Charcoal for rich contrasting footer / marquee strip */

    /* Logo Accent Colors (Vibrant Music Wave Orange Gradient) */
    --orange: #FF6C3E;
    /* Main Brand Accent / CTA Button Solid Orange */
    --orange-soft: #F5904C;
    /* Secondary Soft Orange from the upper gradient loop */

    /* Neutral Accents */
    --line: #E2E4E6;
    /* Clean, soft borders */
    --globe-land: #616569;
    /* Polished monochrome accent for elements */
    --globe-sphere: #DBDEE1;
    /* Subtle contrast element */
    --text-dim: #75787C;
    /* Muted metadata / caption text */

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Poppins', 'Helvetica Neue', Arial, sans-serif;

    --container: 1240px;
    --gutter: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--navy);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--orange);
    color: #fff;
    padding: 10px 16px;
    z-index: 999;
    font-weight: 600;
}

.skip-link:focus {
    left: var(--gutter);
    top: var(--gutter);
}

:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

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

/* =========================================================
   Scroll-reveal animation
   ========================================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal="scale"] {
    transform: scale(0.92);
}

[data-reveal="scale"].is-revealed {
    transform: scale(1);
}

[data-reveal-delay="1"] {
    transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
    transition-delay: 0.22s;
}

[data-reveal-delay="3"] {
    transition-delay: 0.34s;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn--pill {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1.5px solid var(--orange);
    border-radius: 999px;
    padding: 13px 30px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--pill:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 108, 62, 0.3);
}

.btn--pill:active {
    transform: translateY(0);
    box-shadow: none;
}

/* =========================================================
   Header (Slim & Polished with Image Logo)
   ========================================================= */
.site-header {
    position: relative;
    z-index: 100;
}

.header-bar {
    background: var(--cream);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-bar__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-icon-logo {
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.header-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
}

.header-bar__lang {
    position: relative;
    margin-inline: auto;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    padding: 6px 8px;
}

.lang-menu {
    list-style: none;
    margin: 6px 0 0;
    padding: 6px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    background: #fff;
    border: 1px solid var(--line);
    min-width: 90px;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.lang-menu.is-open {
    display: flex;
}

.lang-menu li a {
    display: block;
    padding: 6px 10px;
    font-size: 13px;
    text-align: center;
    border-radius: 2px;
    text-decoration: none;
}

.lang-menu li a:hover {
    background: var(--cream);
    color: var(--orange);
}

.nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-burger span {
    width: 24px;
    height: 1.5px;
    background: var(--navy);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-burger.is-active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.is-active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: currentColor;
}

.mobile-menu__logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* =========================================================
   Mobile slide-out menu overlay
   ========================================================= */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 200;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.mobile-menu.is-open {
    transform: translateY(0);
}

.mobile-menu__bar {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--gutter);
    max-width: var(--container);
    margin-inline: auto;
    width: 100%;
}

.mobile-menu__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
}

.mobile-menu__wordmark {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.mobile-menu__wordmark em {
    font-style: normal;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.mobile-menu__wordmark .reg {
    font-size: 12px;
}

.mobile-menu__close {
    background: #e9e9e7;
    border: none;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--navy);
    cursor: pointer;
}

.mobile-menu__links {
    max-width: 640px;
    margin-inline: auto;
    width: 100%;
    padding-inline: var(--gutter);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
}

.mobile-menu__links a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    color: var(--navy);
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu__links a:hover {
    color: var(--orange);
    padding-left: 12px;
}

.mobile-menu__social {
    max-width: 640px;
    margin-inline: auto;
    width: 100%;
    padding: 28px var(--gutter);
    display: flex;
    gap: 22px;
    align-items: center;
}

.mobile-menu__social a {
    color: var(--navy);
}

.mobile-menu__social a:hover {
    color: var(--orange);
}

.mobile-menu__go {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-block: 60px;
    overflow: hidden;
}

.hero__inner-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 3;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

.hero__inner-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(248, 249, 250, 0.65);
    /* Matches premium off-white cream */
    z-index: 1;
    pointer-events: none;
}

.hero__dots {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1.5px solid var(--purple);
    background: transparent;
    cursor: pointer;
    transition: background 0.25s ease;
    padding: 0;
}

.hero__dot.is-active {
    background: var(--purple);
}

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.hero__wordmark {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--purple);
    font-size: 34px;
    line-height: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.hero__wordmark em {
    font-style: normal;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.hero__wordmark .reg {
    font-size: 18px;
}

.hero__headline {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 2.5px var(--purple);
    font-size: clamp(3.2rem, 11vw, 9rem);
    line-height: 0.98;
    letter-spacing: -0.01em;
}

.hero__line {
    display: block;
}

.hero__badge {
    position: absolute;
    right: 6%;
    bottom: 8%;
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
}

.hero__badge-ring {
    width: 100%;
    height: 100%;
    animation: spin 16s linear infinite;
}

.hero__badge-text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: 0.05em;
    fill: var(--orange);
}

.hero__badge-spark {
    position: absolute;
    inset: 0;
    margin: auto;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero__scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    background: none;
    border: none;
    cursor: pointer;
    animation: bobDown 1.8s ease-in-out infinite;
}

@keyframes bobDown {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 6px);
    }
}

@media (max-width: 700px) {
    .hero__badge {
        width: 96px;
        height: 96px;
        right: 8%;
        bottom: 4%;
    }

    .hero__badge-text {
        font-size: 9.5px;
    }
}

/* =========================================================
   Intro text band
   ========================================================= */
.intro {
    padding-block: 40px 60px;
    text-align: center;
}

.intro__icon {
    margin: 0 auto 18px;
}

.intro__text {
    max-width: 620px;
    margin: 0 auto 28px;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.7;
}

.intro__social {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 18px;
    color: var(--orange);
}

.intro__social a {
    color: var(--orange);
}

.intro__social a:hover {
    opacity: 0.7;
}

.intro__go {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
}

/* =========================================================
   Intro — dual button row
   ========================================================= */
.intro__btn-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn--pill.btn--primary {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 6px 20px rgba(255, 108, 62, 0.28);
}

.btn--pill.btn--primary:hover {
    background: #e85a2b;
    border-color: #e85a2b;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 108, 62, 0.38);
}

.btn--pill.btn--ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
    box-shadow: none;
}

.btn--pill.btn--ghost:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(45, 46, 48, 0.22);
}

@media (max-width: 400px) {
    .intro__btn-row {
        flex-direction: column;
        align-items: center;
    }

    .intro__btn-row .btn--pill {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}

/* =========================================================
   Globe + Diverse Marquee Section
   ========================================================= */
.globe-section {
    position: relative;
    min-height: 620px;
    padding-top: 20px;
    padding-bottom: 40px;
    background: linear-gradient(180deg, var(--cream) 0%, #D2D5D8 38%, #B1B5B9 62%, var(--cream) 100%);
    /* Adjusted for charcoal harmony */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.globe-section__fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.globe-section__marquee {
    width: 100%;
    display: flex;
    flex-direction: column;
    order: 2;
    gap: 0;
}

.globe-section__marquee-row {
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    white-space: nowrap;
    padding-block: 18px;
}

.globe-section__marquee-row:nth-child(1) .globe-section__marquee-track {
    animation-duration: 35s;
}

.globe-section__marquee-row:nth-child(2) .globe-section__marquee-track {
    animation-duration: 30s;
    animation-direction: reverse;
}

.globe-section__marquee-row:nth-child(3) .globe-section__marquee-track {
    animation-duration: 40s;
}

.globe-section__marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

.globe-section__marquee-item {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    color: rgba(255, 255, 255, 0.95);
}

.globe-section__marquee-dot {
    color: var(--orange);
    font-size: 18px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.3333%);
    }
}

.globe-section__globe-wrap {
    position: relative;
    order: 1;
    align-self: center;
    width: min(38vw, 420px);
    aspect-ratio: 1 / 1;
    z-index: 2;
    margin-bottom: -60px;
    animation: globeFloat 7s ease-in-out infinite;
}

.globe-section__globe {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 30px 50px rgba(26, 27, 28, 0.35));
}

@keyframes globeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.globe-section__dots {
    position: absolute;
    inset: 0;
}

.globe-section__dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 108, 62, 0.25);
    transform: translate(-50%, -50%);
    animation: dotPulse 2.4s ease-in-out infinite;
}

.globe-section__dot:nth-child(odd) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

@media (max-width: 700px) {
    .globe-section {
        min-height: 480px;
        padding-bottom: 50px;
    }

    .globe-section__globe-wrap {
        width: 58vw;
        margin-bottom: -80px;
    }
}

/* =========================================================
   Careers — orange gradient arc band
   ========================================================= */
.careers {
    position: relative;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 100%);
    padding-block: 40px 70px;
    overflow: hidden;
    text-align: center;
}

.careers__arc {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    width: 1400px;
    height: 1400px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 0%, var(--orange-soft) 0%, var(--orange) 28%, rgba(245, 144, 76, 0.55) 55%, rgba(248, 249, 250, 0) 72%);
    z-index: 0;
}

.careers__inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.careers__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--navy);
    margin: 0 0 18px;
    letter-spacing: 0.02em;
}

.careers__text {
    font-size: 15px;
    color: var(--navy);
    margin: 0 0 28px;
}

/* =========================================================
   Site Footer (Compact & Polished)
   ========================================================= */
:root {
    --footer-bg: #141516;
    /* Dark Charcoal to seamlessly complement the brand text */
    --brand-orange: #ff6c3e;
    --text-muted: #8A8D93;
}

.site-footer {
    background-color: var(--footer-bg);
    color: #ffffff;
    padding-top: 40px;
    padding-bottom: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__left {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.footer__company-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.footer__tagline {
    font-size: 10px;
    font-weight: 600;
    color: var(--brand-orange);
    text-transform: uppercase;
    margin: 3px 0 0 0;
    letter-spacing: 0.04em;
}

.footer__description {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    max-width: 320px;
    margin: 0;
}

.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 2px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transition: all 0.2s ease;
}

.footer__social a:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    transform: translateY(-1px);
}

.footer__block {
    flex: 1 1 180px;
}

.footer__title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 15px 0;
    position: relative;
    display: inline-block;
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--brand-orange);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__nav a {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__nav a:hover {
    color: #ffffff;
}

.footer__contact-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__email-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 8px 12px;
    max-width: 240px;
}

.footer__mail-icon {
    color: var(--text-muted);
}

.footer__email {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.footer__email:hover {
    color: #ffffff;
}

.footer__address {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
    max-width: 240px;
    margin: 0;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: #ffffff;
}

.footer__legal-dot {
    color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .footer__grid {
        flex-direction: column;
        gap: 25px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}