:root {
    --ink: #05070D;
    --navy: #0A1530;
    --navy-2: #0E1D44;
    --blue: #1456D6;
    --blue-light: #3E82F7;
    --blue-pale: #E3ECFF;
    --white: #FFFFFF;
    --off: #F5F7FB;
    --grey: #93A0BD;
    --grey-d: #5B6477;
    --radius-soft: 4px;
    --maxw: 1240px;
    --ease: cubic-bezier(.16, .84, .32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}

h1,
h2,
h3 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.02;
    letter-spacing: .5px;
}

.script {
    font-family: 'Mrs Saint Delafield', cursive;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--blue);
    display: inline-block;
}

.eyebrow.on-dark {
    color: var(--blue-light);
}

/* ---------- reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all .35s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(20, 86, 214, .55);
}

.btn-outline {
    border-color: rgba(255, 255, 255, .45);
    color: var(--white);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
}

.btn-outline.on-light {
    border-color: rgba(5, 7, 13, .3);
    color: var(--ink);
}

.btn-outline.on-light:hover {
    border-color: var(--ink);
    background: rgba(5, 7, 13, .05);
}

/* ================= NAV ================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 22px 0;
    transition: all .4s var(--ease);
}

.nav.scrolled {
    background: rgba(5, 7, 13, .86);
    backdrop-filter: blur(14px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}

.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    height: 30px;
    width: auto;
    display: block;
    filter: invert(1);
    mix-blend-mode: screen;
    transition: opacity .3s;
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
}

.brand-logo-link:hover .brand-logo {
    opacity: .8;
}

.footer-logo {
    height: 42px;
    width: auto;
    display: block;
    filter: invert(1);
    mix-blend-mode: screen;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-links a {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--grey);
    transition: color .3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    margin-left: 8px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    display: block;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(165deg, var(--ink) 0%, var(--navy) 55%, var(--navy-2) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 110px;
}

.hero-dots {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image: radial-gradient(rgba(255, 255, 255, .35) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(120deg, black 0%, transparent 55%);
}

.hero-swoosh {
    position: absolute;
    top: -10%;
    right: -8%;
    width: 62%;
    height: 130%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    clip-path: polygon(38% 0%, 100% 0%, 100% 100%, 8% 100%);
    opacity: .9;
}

.hero-swoosh::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, .35) 100%);
}

.hero-glow {
    position: absolute;
    top: 18%;
    right: 6%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62, 130, 247, .45), transparent 70%);
    filter: blur(10px);
}

.hero .wrap {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: end;
}

.hero-copy {
    padding-bottom: 54px;
}

.hero-roles {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.hero-roles span {
    padding: 0 14px;
}

.hero-roles span:first-child {
    padding-left: 0;
}

.hero-roles b {
    color: var(--white);
    font-weight: 700;
}

.hero-roles .divider {
    color: var(--blue-light);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(40px, 6.2vw, 84px);
}

.hero h1 .accent {
    color: var(--blue-light);
}

.hero-sub {
    color: var(--grey);
    font-size: 17px;
    line-height: 1.75;
    max-width: 480px;
    margin: 26px 0 38px;
    font-weight: 400;
}

.hero-cta-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-portrait-col {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-portrait-frame {
    position: relative;
    width: 100%;
    max-width: 430px;
    clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-portrait-frame img {
    width: 100%;
    display: block;
    filter: contrast(1.05) saturate(1.02);
}

.hero-portrait-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(5, 7, 13, .9) 100%);
}

.hero-sig {
    position: absolute;
    left: 30%;
    bottom: 0px;
    transform: translateX(-50%);
    width: 190px;
    filter: invert(1);
    mix-blend-mode: screen;
    opacity: .95;
}

.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 32px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--grey);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-cue .line {
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg, var(--blue-light), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-cue .line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue-light);
    animation: scrollline 2s infinite;
}

@keyframes scrollline {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* ================= MARQUEE ================= */
.marquee {
    background: var(--blue);
    overflow: hidden;
    white-space: nowrap;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.marquee-track {
    display: inline-flex;
    animation: marquee 28s linear infinite;
}

.marquee-track span {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    color: var(--white);
    letter-spacing: 1px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    opacity: .95;
}

.marquee-track span::after {
    content: "✦";
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ================= ABOUT ================= */
.about {
    background: var(--off);
    padding: 130px 0;
    position: relative;
}

.about .wrap {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap::before {
    content: "";
    position: absolute;
    top: -22px;
    left: -22px;
    width: 100%;
    height: 100%;
    background: var(--blue);
    clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
    z-index: 0;
}

.about-img-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
    filter: grayscale(.06) contrast(1.04);
}

.about-copy h2 {
    font-size: clamp(30px, 3.6vw, 46px);
    color: var(--ink);
    margin-bottom: 26px;
}

.about-copy h2 .script {
    color: var(--blue);
    font-size: 1.5em;
    display: inline-block;
    margin: 0 4px;
}

.about-copy p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--grey-d);
    margin-bottom: 18px;
    max-width: 560px;
}

.about-tagline {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(5, 7, 13, .12);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--ink);
}

.about-tagline b {
    color: var(--blue);
}

/* ================= PILLARS ================= */
.pillars {
    background: var(--ink);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

.pillars-head {
    max-width: 640px;
    margin-bottom: 70px;
}

.pillars-head h2 {
    color: var(--white);
    font-size: clamp(28px, 3.4vw, 42px);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .1);
}

.pillar-card {
    background: var(--ink);
    padding: 44px 30px;
    transition: background .4s var(--ease);
}

.pillar-card:hover {
    background: var(--navy);
}

.pillar-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 26px;
}

.pillar-card h3 {
    color: var(--white);
    font-size: 18px;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.pillar-card p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.7;
}

/* ================= EXPERTISE ================= */
.expertise {
    background: var(--white);
    padding: 130px 0;
}

.expertise-head {
    max-width: 640px;
    margin: 0 auto 80px;
    text-align: center;
}

.expertise-head .eyebrow {
    justify-content: center;
}

.expertise-head h2 {
    font-size: clamp(28px, 3.6vw, 44px);
}

.ex-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 64px 0;
    border-top: 1px solid rgba(5, 7, 13, .1);
}

.ex-row:last-child {
    border-bottom: 1px solid rgba(5, 7, 13, .1);
}

.ex-row.reverse .ex-img {
    order: 2;
}

.ex-row.reverse .ex-copy {
    order: 1;
}

.ex-img {
    position: relative;
}

.ex-img img {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.ex-num {
    font-family: 'Anton', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 14px;
    text-transform: uppercase;
    font-weight: 400;
}

.ex-copy h3 {
    font-size: clamp(22px, 2.6vw, 32px);
    margin-bottom: 16px;
    color: var(--ink);
}

.ex-copy p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--grey-d);
    max-width: 460px;
}

.author-card {
    background: var(--navy);
    color: var(--white);
    padding: 64px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 94% 100%, 0 100%);
    position: relative;
}

.author-card .script {
    font-size: 32px;
    color: var(--blue-light);
    display: block;
    margin-bottom: 10px;
}

.author-card h3 {
    font-size: clamp(22px, 2.6vw, 30px);
    color: var(--white);
    margin-bottom: 18px;
}

.author-card p {
    color: var(--grey);
    font-size: 15.5px;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* ================= GALLERY ================= */
.gallery {
    background: var(--off);
    padding: 130px 0;
}

.gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 54px;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-head h2 {
    font-size: clamp(26px, 3.2vw, 38px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(55%) brightness(.9) contrast(1.05);
    transition: filter .5s var(--ease), transform .6s var(--ease);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 86, 214, .25), rgba(5, 7, 13, .55));
    mix-blend-mode: multiply;
    transition: opacity .5s;
}

.gallery-item:hover img {
    filter: grayscale(0%) brightness(1) contrast(1.05);
    transform: scale(1.05);
}

.gallery-item:hover::after {
    opacity: .15;
}

/* ================= MUSIC SPOTLIGHT ================= */
.music {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}

.music-bg {
    position: absolute;
    inset: 0;
}

.music-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: .55;
    filter: grayscale(35%) contrast(1.05);
}

.music-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--ink) 18%, rgba(5, 7, 13, .45) 55%, rgba(20, 86, 214, .4) 100%);
}

.music .wrap {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.music h2 {
    color: var(--white);
    font-size: clamp(34px, 5vw, 64px);
    margin-bottom: 24px;
}

.music h2 .script {
    color: var(--blue-light);
    font-size: 1.05em;
}

.music p {
    color: var(--grey);
    font-size: 16.5px;
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 480px;
}

/* ================= QUOTE ================= */
.quote {
    background: linear-gradient(120deg, var(--blue) 0%, var(--navy-2) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.quote .wrap {
    max-width: 820px;
}

.quote p {
    font-family: 'Anton', sans-serif;
    text-transform: none;
    letter-spacing: .3px;
    color: var(--white);
    font-size: clamp(26px, 3.6vw, 42px);
    line-height: 1.35;
}

.quote cite {
    display: block;
    margin-top: 30px;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    font-weight: 700;
}

/* ================= CTA ================= */
.cta {
    background: var(--ink);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-swoosh {
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(20, 86, 214, .35), transparent 70%);
}

.cta .wrap {
    position: relative;
    z-index: 2;
}

.cta .eyebrow {
    justify-content: center;
}

.cta h2 {
    color: var(--white);
    font-size: clamp(32px, 5.2vw, 60px);
    max-width: 780px;
    margin: 0 auto 24px;
}

.cta p {
    color: var(--grey);
    font-size: 16.5px;
    max-width: 480px;
    margin: 0 auto 42px;
}

/* ================= FOOTER ================= */
footer {
    background: #03040A;
    padding: 64px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-tagline {
    color: var(--grey);
    font-size: 14px;
    max-width: 340px;
    line-height: 1.7;
    margin-top: 14px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h4 {
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 12px;
    transition: color .3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.footer-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--grey);
    font-size: 12.5px;
}

/* ================= RESPONSIVE ================= */
@media (max-width:980px) {
    .hero .wrap {
        grid-template-columns: 1fr;
    }

    .hero-portrait-col {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 150px 0 100px;
    }

    .about .wrap {
        grid-template-columns: 1fr;
    }

    .about-img-wrap {
        max-width: 380px;
        margin: 0 auto 60px;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ex-row,
    .ex-row.reverse {
        grid-template-columns: 1fr;
    }

    .ex-row.reverse .ex-img,
    .ex-row.reverse .ex-copy {
        order: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width:600px) {
    .wrap {
        padding: 0 22px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-roles span {
        padding: 0 10px 0 0;
    }

    .footer-links {
        gap: 36px;
    }

    .author-card {
        padding: 42px 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ================= MUSIC SPOTLIGHT ================= */
.music{
    position:relative;min-height:88vh;display:flex;align-items:center;overflow:hidden;
    background:var(--ink);padding:90px 0;
  }
  .music-bg{position:absolute;inset:0;}
  .music-bg img{width:100%;height:100%;object-fit:cover;object-position:top center;opacity:.4;filter:grayscale(45%) contrast(1.05);}
  .music-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg, var(--ink) 30%, rgba(5,7,13,.55) 58%, rgba(10,21,48,.85) 100%);}
  .music .wrap{position:relative;z-index:2;display:grid;grid-template-columns:1.1fr .9fr;gap:30px;align-items:center;}
  .music-copy{max-width:520px;}
  .music h2{color:var(--white);font-size:clamp(34px,5vw,64px);margin-bottom:24px;}
  .music h2 .script{color:var(--blue-light);font-size:1.05em;}
  .music-copy p{color:var(--grey);font-size:16.5px;line-height:1.85;margin-bottom:30px;max-width:480px;}
  .music-tag{
    display:inline-flex;align-items:center;gap:9px;color:var(--grey);font-size:13px;font-weight:600;
    letter-spacing:1px;margin-bottom:30px;padding:9px 16px;border:1px solid rgba(255,255,255,.15);
    border-radius:30px;
  }
  .music-tag .dot{width:7px;height:7px;border-radius:50%;background:var(--blue-light);box-shadow:0 0 10px var(--blue-light);animation:pulse 1.8s infinite;}
  @keyframes pulse{0%,100%{opacity:1;}50%{opacity:.35;}}
  .music-cta-row{display:flex;gap:16px;flex-wrap:wrap;align-items:center;}
  .btn-icon{width:16px;height:16px;flex-shrink:0;}
  
  .music-poster-col{position:relative;display:flex;justify-content:center;align-items:center;min-height:420px;}
  .music-poster-glow{
    position:absolute;width:380px;height:380px;border-radius:50%;
    background:radial-gradient(circle, rgba(62,130,247,.45), transparent 70%);filter:blur(20px);z-index:0;
  }
  .music-poster{
    position:relative;z-index:1;width:300px;max-width:78%;display:block;
    transform:rotate(-4deg);border-radius:8px;overflow:hidden;
    box-shadow:0 45px 90px -25px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.08);
    transition:transform .5s var(--ease), box-shadow .5s var(--ease);
  }
  .music-poster:hover{transform:rotate(0deg) translateY(-8px);box-shadow:0 55px 100px -20px rgba(20,86,214,.45), 0 0 0 1px rgba(255,255,255,.12);}
  .music-poster img{width:100%;display:block;}
  .music-badge{
    position:absolute;z-index:2;top:-16px;right:6%;background:var(--blue);color:var(--white);
    font-family:'Anton',sans-serif;font-size:12.5px;letter-spacing:1px;text-transform:uppercase;
    padding:10px 16px;border-radius:3px;transform:rotate(6deg);
    box-shadow:0 14px 28px -8px rgba(20,86,214,.6);
  }
  
  @media (max-width:980px){
    .music .wrap{grid-template-columns:1fr;}
    .music-poster-col{order:-1;margin-bottom:10px;}
  }