/* =========================================================
   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;
    justify-content: flex-start;
    /* center theke left-e */
    margin-top: 0;
    margin-bottom: 12px;
    transform: none;
    padding-left: 20%;
    /* ei value adjust kore "Your" er "Y" borabor niye jao */
}

.hero__logo img {
    width: 220px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero__logo {
        justify-content: flex-start;
        transform: none;
        padding-left: 10%;
        margin-top: 6px;
        margin-bottom: 16px;
    }

    .hero__logo img {
        width: 150px;
        height: auto;
    }
}

.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__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;
}

.careers .btn--pill {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.careers .btn--pill:hover {
    background: #ffffff;
    color: var(--orange);
    border-color: #ffffff;
}

/* =========================================================
   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;
}

.footer__logo-img {
    width: 270px;
    /* আপনার logo অনুযায়ী adjust করুন */
    height: auto;
    display: block;
    object-fit: contain;
}



.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;
    }
}

/* =========================================================
   Contact Page
   ========================================================= */
.contact-hero {
    background: var(--cream);
    padding-block: 60px 40px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.contact-hero__inner {
    max-width: 680px;
}

.contact-hero__eyebrow {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--orange);
    margin: 0 0 10px;
}

.contact-hero__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--purple);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.contact-hero__sub {
    font-size: 14px;
    color: var(--navy);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 10px;
}

.contact-hero__link {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-hero__link:hover {
    opacity: 0.75;
}

.contact-hero__required {
    font-size: 12px;
    color: var(--text-dim);
    margin: 6px 0 0;
}

.contact-form-section {
    padding-block: 40px 70px;
    background: var(--cream);
}

.contact-form-section__inner {
    max-width: 680px;
}

/* Success alert */
.contact-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 24px;
    color: #15803d;
}

.contact-success svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-success strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.contact-success p {
    margin: 0;
    font-size: 13px;
    opacity: 0.85;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 620px) {
    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
}

.contact-field span {
    letter-spacing: 0.01em;
}

.contact-field span small {
    font-weight: 400;
    color: var(--text-dim);
    font-size: 11.5px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--line);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--navy);
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 108, 62, 0.12);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #b0bac4;
}

.contact-field textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-field__error {
    font-size: 11.5px;
    color: #dc2626;
    font-style: normal;
    font-weight: 500;
}

.contact-form__footer {
    padding-top: 4px;
    display: flex;
    justify-content: center;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    min-width: 200px;
}

/* =========================================================
   Collaboration Page
   ========================================================= */
.collab-page {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: calc(100vh - 84px);
    align-items: start;
}

/* Left sidebar */
.collab-sidebar {
    background: var(--cream);
    border-right: 1px solid var(--line);
    padding: 48px 28px;
    position: sticky;
    top: 84px;
    min-height: calc(100vh - 84px);
}

.collab-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.collab-sidebar__item {
    display: flex;
    gap: 14px;
    padding: 20px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    transition: background 0.15s ease;
    border-radius: 6px;
    margin-bottom: 4px;
}

.collab-sidebar__item:hover {
    background: rgba(0, 0, 0, 0.03);
}

.collab-sidebar__item--active {
    background: rgba(70, 52, 135, 0.06);
    border-left: 3px solid var(--purple);
    padding-left: 13px;
}

.collab-sidebar__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.collab-sidebar__text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.collab-sidebar__text p {
    font-size: 12px;
    color: var(--text-dim);
    margin: 0 0 5px;
    line-height: 1.5;
}

.collab-sidebar__text em {
    font-size: 11.5px;
    color: var(--orange);
    font-style: normal;
}

/* Right form area */
.collab-form-wrap {
    padding: 48px 40px 80px;
    background: var(--cream);
}

.collab-form-header {
    margin-bottom: 28px;
}

.collab-form-header__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--purple);
    margin: 0 0 8px;
}

.collab-form-header__sub {
    font-size: 13px;
    color: var(--text-dim);
    margin: 0;
}

/* Form sections */
.collab-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.collab-form__section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.collab-form__section-label {
    flex-shrink: 0;
    padding-top: 6px;
}

.collab-form__section-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-display);
}

.collab-form__fields {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* select field styling */
.contact-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--line);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--navy);
    background: #fff;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23093c59' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 108, 62, 0.12);
}

/* Full-width field inside 2-column grid */
.collab-field--full {
    grid-column: 1 / -1;
}

/* Checkboxes row */
.collab-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 4px;
}

.collab-checkbox {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
}

.collab-checkbox input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--orange);
    cursor: pointer;
    flex-shrink: 0;
}

.collab-checkbox--privacy {
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.5;
}

.collab-checkbox--privacy span {
    padding-top: 1px;
}

.collab-checkbox--privacy em {
    color: var(--orange);
    font-style: normal;
    margin-left: 2px;
}

.contact-field em {
    color: var(--orange);
    font-style: normal;
}

@media (max-width: 960px) {
    .collab-page {
        grid-template-columns: 1fr;
    }

    .collab-sidebar {
        position: static;
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 28px 20px;
    }

    .collab-form-wrap {
        padding: 28px 20px 60px;
    }

    .collab-form__fields {
        grid-template-columns: 1fr;
    }

    .collab-field--full {
        grid-column: 1;
    }
}

@media (max-width: 620px) {
    .collab-form__section {
        flex-direction: column;
        gap: 12px;
    }
}

/* =========================================================
   Legal / Copyright content block
   ========================================================= */
.legal-content h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--purple);
    margin: 24px 0 10px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-dim);
    margin: 0 0 14px;
}

.legal-content ol {
    margin: 0 0 20px;
    padding-left: 20px;
}

.legal-content ol li {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--navy);
    margin-bottom: 8px;
}

.legal-content__cta {
    margin-top: 8px;
}

/* =========================================================
   About Page
   ========================================================= */
.about-page {
    overflow-x: hidden;
}

/* Entrance animation keyframe */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

.fade-up--1 {
    animation-delay: 0.1s;
}

.fade-up--2 {
    animation-delay: 0.22s;
}

.fade-up--3 {
    animation-delay: 0.34s;
}

.fade-up--4 {
    animation-delay: 0.46s;
}

/* Scroll-triggered fade (JS toggles .is-visible) */
.fade-up-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--d, 0s);
}

.fade-up-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hero ── */
.about-hero {
    background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
    padding: 100px 40px 90px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.about-hero__inner {
    max-width: 780px;
    margin: 0 auto;
}

.about-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.about-hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
    color: var(--purple);
    margin: 0 0 24px;
}

.about-hero__lead {
    font-size: 16px;
    line-height: 1.75;
    color: var(--navy);
    margin: 0 0 16px;
}

.about-hero__sub {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-dim);
    max-width: 620px;
    margin: 0 auto 36px;
}

.about-hero__mission {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--orange);
    border-radius: 10px;
    padding: 22px 28px;
    text-align: left;
    max-width: 560px;
}

.about-hero__mission span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
}

.about-hero__mission p {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--purple);
    margin: 0;
    line-height: 1.5;
}

/* ── Generic content block ── */
.about-block {
    padding: 72px 40px;
}

.about-block--alt {
    background: var(--cream);
}

.about-block__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 28px;
}

.about-block__num {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--orange);
    padding-top: 6px;
}

.about-block__content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    color: var(--purple);
    margin: 0 0 18px;
}

.about-block__content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dim);
    margin: 0 0 14px;
}

.about-block__intro {
    color: var(--navy) !important;
    font-weight: 500;
}

.about-block__note {
    margin-top: 18px !important;
    font-style: normal;
    color: var(--navy) !important;
}

/* ── What We Do — service cards ── */
.about-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.about-service-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-service-card:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgba(70, 52, 135, 0.08);
}

.about-service-card__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    color: var(--orange);
    flex-shrink: 0;
}

.about-service-card__label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

/* ── Platform pills ── */
.about-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.about-platform-pill {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 16px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-platform-pill:hover {
    transform: translateY(-2px);
    border-color: var(--purple);
    background: rgba(70, 52, 135, 0.05);
}

.about-platform-pill--more {
    color: var(--orange);
    border-style: dashed;
}

/* ── Checklist ── */
.about-checklist {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--navy);
}

.about-checklist li svg {
    flex-shrink: 0;
    color: var(--orange);
    background: rgba(255, 108, 62, 0.1);
    border-radius: 50%;
    padding: 3px;
    box-sizing: content-box;
}

/* ── Values ── */
.about-values {
    padding: 80px 40px;
    background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.about-values__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-values__head {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 48px;
}

.about-values__head h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--purple);
    margin: 10px 0 10px;
}

.about-values__head p {
    font-size: 13.5px;
    color: var(--text-dim);
    margin: 0;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.about-value-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px 20px;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-value-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
    box-shadow: 0 14px 30px rgba(9, 60, 89, 0.1);
}

.about-value-card__num {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    background: var(--purple);
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 14px;
}

.about-value-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    margin: 0 0 8px;
}

.about-value-card p {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--text-dim);
    margin: 0;
}

/* ── Final split section: CTA (left) + Contact (right), gradient background ── */
.about-final {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    min-height: 420px;
    background: linear-gradient(120deg, var(--navy) 0%, var(--purple) 55%, #2d1f5c 100%);
}

.about-final__col {
    padding: 70px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-final__col--cta {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-final__col--contact {
    align-items: flex-start;
}

/* Left — CTA content */
.about-final__col--cta h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    color: #fff;
    line-height: 1.3;
    margin: 0 0 20px;
}

.about-final__col--cta p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 14px;
    max-width: 520px;
}

.about-final__sub {
    margin-bottom: 30px !important;
}

.about-final__btn {
    background: var(--orange);
    color: #fff;
    width: fit-content;
}

/* Right — Contact content */
.about-final__brand {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    margin-bottom: 10px;
}

.about-final__email {
    display: inline-block;
    font-size: 14px;
    color: var(--orange);
    margin-bottom: 20px;
    text-decoration: none;
}

.about-final__email:hover {
    text-decoration: underline;
}

.about-final__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.about-final__meta a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.about-final__meta a:hover {
    color: var(--orange);
}

.about-final__tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
}




/* ── Responsive ── */
@media (max-width: 900px) {
    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .about-hero {
        padding: 70px 24px 60px;
    }

    .about-block {
        padding: 52px 24px;
    }

    .about-block__inner {
        flex-direction: column;
        gap: 12px;
    }

    .about-services {
        grid-template-columns: 1fr 1fr;
    }

    .about-values {
        padding: 56px 24px;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-final {
        grid-template-columns: 1fr;
    }

    .about-final__col--cta {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .about-final__col {
        padding: 50px 24px;
    }
}

/* =========================================================
   Legal Pages (Terms & Conditions, Privacy Policy)
   ========================================================= */
.legal-hero {
    background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
    padding-block: 64px 48px;
    border-bottom: 1px solid var(--line);
}

.legal-hero__inner {
    max-width: 760px;
}

.legal-hero__eyebrow {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 12px;
}

.legal-hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--purple);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.legal-hero__meta {
    font-size: 13px;
    color: var(--text-dim);
    margin: 0 0 18px;
}

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

.legal-page {
    padding-block: 52px 100px;
    background: var(--cream);
}

.legal-page__inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px 20px;
}

.legal-toc__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin: 0 0 14px;
}

.legal-toc nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.legal-toc a {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-dim);
    padding: 6px 10px;
    border-radius: 5px;
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1.4;
}

.legal-toc a:hover {
    background: var(--cream);
    color: var(--navy);
}

.legal-toc a.is-active {
    background: rgba(255, 108, 62, 0.08);
    color: var(--orange);
    font-weight: 600;
}

.legal-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.legal-section {
    display: flex;
    gap: 20px;
    padding-block: 32px;
    border-bottom: 1px solid var(--line);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section__num {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    color: var(--orange);
    width: 28px;
    padding-top: 4px;
}

.legal-section__content {
    flex: 1;
}

.legal-section__content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--purple);
    margin: 0 0 14px;
}

.legal-section__content p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--navy);
    margin: 0 0 12px;
}

.legal-section__content p:last-child {
    margin-bottom: 0;
}

.legal-section__content ul {
    margin: 0 0 12px;
    padding-left: 18px;
}

.legal-section__content ul li {
    font-size: 14px;
    line-height: 1.75;
    color: var(--navy);
    margin-bottom: 6px;
}

.legal-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.legal-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(70, 52, 135, 0.08);
    color: var(--purple);
    border: 1px solid rgba(70, 52, 135, 0.15);
}

.legal-pill--soft {
    background: rgba(255, 108, 62, 0.07);
    color: var(--orange);
    border-color: rgba(255, 108, 62, 0.2);
}

.legal-pill--danger {
    background: rgba(220, 38, 38, 0.06);
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.15);
}

.legal-callout {
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 7px;
    font-size: 13.5px;
    line-height: 1.6;
}

.legal-callout--warn {
    background: #fffbf0;
    border-left: 3px solid var(--orange);
    color: var(--navy);
}

.legal-note {
    font-size: 12.5px !important;
    color: var(--text-dim) !important;
    font-style: italic;
}

.legal-link {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-link:hover {
    opacity: 0.75;
}

.legal-contact-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px 22px;
    max-width: 320px;
    font-size: 14px;
    color: var(--navy);
}

.legal-contact-card strong {
    font-weight: 700;
    color: var(--purple);
    font-size: 15px;
}

.legal-contact-card address {
    font-style: normal;
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-top: 4px;
}

.legal-footer-note {
    margin-top: 40px;
    padding: 20px 22px;
    background: rgba(70, 52, 135, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--purple);
    font-size: 13.5px;
    color: var(--navy);
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 860px) {
    .legal-page__inner {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: static;
    }
}

@media (max-width: 600px) {
    .legal-section {
        flex-direction: column;
        gap: 8px;
    }
}

/* =========================================================
   FEATURED IN EDITORIAL PLAYLISTS
   Uses the site's existing design tokens (--purple, --navy,
   --orange, --cream, --line, --text-dim, --font-display,
   --font-body) already defined on :root in the main theme.
   ========================================================= */

.feat {
    position: relative;
    background: var(--cream);
    padding-block: 70px 90px;
    overflow: hidden;
}

/* ---------- Head: EQ icon + title + subtitle ---------- */
.feat__head {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    padding-bottom: 44px;
}

.feat__eq {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 22px;
    margin-bottom: 18px;
}

.feat__eq span {
    display: block;
    width: 3.5px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--orange-soft) 0%, var(--orange) 100%);
    animation: featEq 1.1s ease-in-out infinite;
}

.feat__eq span:nth-child(1) {
    height: 40%;
    animation-delay: -1.0s;
}

.feat__eq span:nth-child(2) {
    height: 90%;
    animation-delay: -0.8s;
}

.feat__eq span:nth-child(3) {
    height: 55%;
    animation-delay: -0.5s;
}

.feat__eq span:nth-child(4) {
    height: 100%;
    animation-delay: -0.2s;
}

.feat__eq span:nth-child(5) {
    height: 65%;
    animation-delay: -0.35s;
}

@keyframes featEq {

    0%,
    100% {
        transform: scaleY(0.35);
    }

    50% {
        transform: scaleY(1);
    }
}

.feat__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.9rem, 4.2vw, 2.7rem);
    color: var(--purple);
    letter-spacing: -0.01em;
    margin: 0 0 14px;
}

.feat__subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dim);
    margin: 0;
}

/* ---------- Card (shared: static grid + marquee) ---------- */
.feat__card {
    position: relative;
    flex: 0 0 auto;
    width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    background: var(--globe-sphere, #e9eaec);
    box-shadow: 0 10px 30px rgba(26, 27, 28, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.feat__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feat__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 14px;
    background: linear-gradient(180deg, rgba(26, 27, 28, 0) 55%, rgba(26, 27, 28, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feat__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: #fff;
    transform: translateY(6px) scale(0.85);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.feat__card:hover,
.feat__card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 27, 28, 0.18);
}

.feat__card:hover img,
.feat__card:focus-visible img {
    transform: scale(1.08);
}

.feat__card:hover .feat__overlay,
.feat__card:focus-visible .feat__overlay {
    opacity: 1;
}

.feat__card:hover .feat__icon,
.feat__card:focus-visible .feat__icon {
    transform: translateY(0) scale(1);
}

/* ---------- Static grid (5 or fewer photos) ---------- */
.feat__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

/* ---------- Marquee (more than 5 photos) ---------- */
.feat__marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.feat__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.feat__fade--left {
    left: 0;
    background: linear-gradient(90deg, var(--cream) 0%, rgba(248, 249, 250, 0) 100%);
}

.feat__fade--right {
    right: 0;
    background: linear-gradient(270deg, var(--cream) 0%, rgba(248, 249, 250, 0) 100%);
}

.feat__track {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    padding-inline: 26px;
    animation: featMarquee 38s linear infinite;
    will-change: transform;
}

.feat__marquee:hover .feat__track {
    animation-play-state: paused;
}

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

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

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .feat__card {
        width: 190px;
    }
}

@media (max-width: 700px) {
    .feat {
        padding-block: 50px 60px;
    }

    .feat__head {
        padding-bottom: 32px;
    }

    .feat__card {
        width: 150px;
    }

    .feat__grid {
        gap: 16px;
    }

    .feat__track {
        gap: 16px;
        animation-duration: 26s;
    }

    .feat__fade {
        width: 60px;
    }
}

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

    .feat__eq span,
    .feat__track {
        animation: none !important;
    }
}