:root {
    --bg: #090b16;
    --bg-soft: #101321;
    --text: #ffffff;
    --muted: #a8adbd;
    --pink: #e91e63;
    --logo-pink: #c63875;
    --logo-red: #d92855;
    --magenta: #c026d3;
    --violet: #7c3aed;
    --cyan: #22d3ee;
    --gradient: linear-gradient(135deg, #7c3aed, #c026d3, #e91e63);
    --border: rgba(255, 255, 255, .11);
    --shadow: 0 24px 80px rgba(0, 0, 0, .35);
    --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 12px clamp(18px, 5vw, 72px);
    background: rgba(9, 11, 22, .78);
    border-top: 0;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0;
}
.brand-logo {
    width: auto;
    height: 58px;
    max-width: 250px;
    object-fit: contain;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--gradient);
    box-shadow: 0 0 32px rgba(233, 30, 99, .35);
}
.brand-mark-img {
    padding: 0;
    object-fit: contain;
    background: transparent;
    box-shadow: 0 0 24px rgba(217, 40, 85, .28);
}
.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    color: var(--muted);
    font-size: .95rem;
}
.site-nav a {
    position: relative;
    transition: color .2s ease, text-shadow .2s ease, filter .2s ease;
}
.nav-home-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.nav-home-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.nav-home-link span {
    font-size: 0;
}
.site-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: var(--gradient);
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .2s ease, transform .2s ease;
}
.site-nav a:hover {
    color: var(--text);
    text-shadow: 0 0 18px rgba(233, 30, 99, .7), 0 0 34px rgba(124, 58, 237, .45);
}
.site-nav a:not(.btn):hover::after {
    opacity: 1;
    transform: scaleX(1);
    box-shadow: 0 0 18px rgba(233, 30, 99, .8);
}
.site-nav .btn:hover {
    filter: brightness(1.16) saturate(1.18);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-soft);
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: var(--radius);
    color: var(--text);
    background: var(--gradient);
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(192, 38, 211, .24);
    transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 52px rgba(233, 30, 99, .3); }
.btn-small { min-height: 40px; padding: 0 16px; font-size: .92rem; }
.btn-ghost {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    box-shadow: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}
.hero-bg,
.hero-video {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg {
    background: url("../img/hero-studio.png") center/cover no-repeat;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(9, 11, 22, .88), rgba(9, 11, 22, .56), rgba(9, 11, 22, .86)),
        linear-gradient(135deg, rgba(124, 58, 237, .23), rgba(192, 38, 211, .16), rgba(233, 30, 99, .18));
}
.hero-content,
.page-hero,
.section {
    width: min(1160px, calc(100% - 36px));
    margin-inline: auto;
}
.hero-content { padding: 90px 0; }
.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #ff4f76;
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-shadow: 0 0 14px rgba(255, 79, 118, .72), 0 0 30px rgba(217, 40, 85, .4);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
    max-width: 820px;
    margin-bottom: 10px;
    font-size: clamp(3rem, 8vw, 7.8rem);
    line-height: .92;
    letter-spacing: 0;
}
.hero-subtitle {
    margin-bottom: 20px;
    font-size: clamp(1.6rem, 3vw, 3.1rem);
    font-weight: 800;
}
.hero-content > p:not(.eyebrow):not(.section-kicker):not(.hero-subtitle),
.page-hero p:not(.eyebrow):not(.section-kicker),
.muted {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.08rem;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 72px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--text);
    transform: translateX(-50%);
    opacity: .92;
    filter: drop-shadow(0 0 18px rgba(255, 79, 118, .55));
    animation: heroScrollFloat 1.9s ease-in-out infinite;
}
.hero-scroll span {
    width: 18px;
    height: 18px;
    border-right: 2px solid #ff4f76;
    border-bottom: 2px solid #ff4f76;
    transform: rotate(45deg);
    box-shadow: 5px 5px 16px rgba(217, 40, 85, .36);
}
.hero-scroll::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: rgba(217, 40, 85, .08);
    box-shadow: 0 0 34px rgba(217, 40, 85, .34);
}
.hero-scroll:hover {
    opacity: 1;
    filter: drop-shadow(0 0 24px rgba(255, 79, 118, .78));
}
@keyframes heroScrollFloat {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-band {
    position: relative;
    width: 100%;
    max-width: none;
    padding-inline: max(18px, calc((100vw - 1160px) / 2));
    background: var(--bg);
}
.section-band-soft {
    background:
        radial-gradient(circle at 18% 10%, rgba(217, 40, 85, .08), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .01)),
        var(--bg-soft);
}
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}
h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: 1; letter-spacing: 0; }
h3 { line-height: 1.2; }

.portfolio-grid,
.article-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.portfolio-grid.large,
.service-grid.wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.film-card,
.article-card,
.service-card,
.contact-card,
.contact-form,
.admin-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    box-shadow: var(--shadow);
}
.film-card { overflow: hidden; min-height: 360px; }
.film-card img {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    background: var(--bg-soft);
}
.film-card div,
.article-card div,
.service-card,
.contact-card,
.contact-form,
.admin-panel { padding: 22px; }
.film-card span,
.article-card span,
.status {
    color: var(--pink);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}
.film-card a,
.article-card a,
.row-actions a,
.row-actions button {
    color: var(--text);
    font-weight: 800;
}
.featured-work {
    display: grid;
    grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
    gap: clamp(30px, 4vw, 58px);
    align-items: stretch;
    width: 100%;
    min-height: auto;
    padding-top: clamp(86px, 8vw, 118px);
    padding-bottom: clamp(86px, 8vw, 118px);
    align-content: center;
}
.showreel-section {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(320px, .68fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: center;
    padding-top: clamp(64px, 7vw, 92px);
    padding-bottom: clamp(64px, 7vw, 92px);
}
.showreel-heading {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
    margin-bottom: -10px;
}
.showreel-heading h2 {
    max-width: 980px;
    font-size: clamp(2.05rem, 3vw, 3.32rem);
    line-height: 1.02;
    text-wrap: balance;
    margin-bottom: 12px;
}
.showreel-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.35rem, 2.1vw, 2.2rem);
    font-weight: 800;
    line-height: 1.08;
}
.showreel-copy p:not(.eyebrow),
.showreel-text p {
    max-width: 620px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.78;
}
.showreel-text {
    margin-bottom: 24px;
    text-align: left;
    text-wrap: pretty;
}
.showreel-text p {
    margin-bottom: 14px;
}
.showreel-copy {
    justify-self: start;
}
.showreel-copy .text-link {
    margin-left: 0;
}
.showreel-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: #050712;
    box-shadow: var(--shadow);
    min-height: 0;
}
.showreel-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.showreel-frame iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    background: #050712;
}
.showreel-frame .work-player {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.featured-work-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    padding-right: clamp(0px, 2vw, 18px);
}
.featured-work-intro h2 {
    max-width: 390px;
    margin-bottom: 38px;
    font-size: clamp(2.05rem, 3vw, 3.32rem);
    line-height: 1.02;
    text-wrap: balance;
}
.featured-title span {
    white-space: nowrap;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--logo-red);
    font-size: .92rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-shadow: 0 0 16px rgba(217, 40, 85, .32);
}
.text-link span {
    font-size: 1.25rem;
    transition: transform .2s ease;
}
.text-link:hover span { transform: translateX(5px); }
.featured-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.featured-film-card {
    position: relative;
    min-height: 350px;
    height: clamp(350px, 52vh, 430px);
    border-color: rgba(255, 255, 255, .13);
    background: #070914;
    box-shadow: none;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.featured-film-card:hover {
    border-color: rgba(255, 79, 118, .72);
    box-shadow: 0 0 0 1px rgba(217, 40, 85, .18), 0 0 34px rgba(217, 40, 85, .28);
    transform: translateY(-4px);
}
.featured-film-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 20, .02) 38%, rgba(7, 9, 20, .82) 100%);
    pointer-events: none;
}
.featured-film-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}
.featured-film-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.08) brightness(1.08);
}
.featured-film-card div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
    padding: 0 18px 20px;
}
.featured-film-card span {
    grid-column: 1 / -1;
    color: #c65cff;
    font-size: .74rem;
}
.featured-film-card h3 {
    margin: 0;
    font-size: clamp(1.08rem, 1.15vw, 1.28rem);
}
.backstage-featured {
    display: grid;
    grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
    gap: clamp(30px, 4vw, 58px);
    align-items: stretch;
    width: 100%;
    padding-top: clamp(86px, 8vw, 118px);
    padding-bottom: clamp(86px, 8vw, 118px);
}
.backstage-card {
    position: relative;
    min-height: 350px;
    height: clamp(350px, 52vh, 430px);
    border-color: rgba(255, 255, 255, .13);
    background: #070914;
    box-shadow: none;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.backstage-card:hover {
    border-color: rgba(255, 79, 118, .72);
    box-shadow: 0 0 0 1px rgba(217, 40, 85, .18), 0 0 34px rgba(217, 40, 85, .28);
    transform: translateY(-4px);
}
.backstage-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 20, .02) 28%, rgba(7, 9, 20, .9) 100%);
    pointer-events: none;
}
.backstage-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}
.backstage-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.08) brightness(1.08);
}
.backstage-card div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    gap: 9px;
    padding: 20px;
}
.backstage-card span {
    color: #c65cff;
    font-size: .74rem;
}
.backstage-card h3 {
    margin: 0;
    font-size: clamp(1.08rem, 1.15vw, 1.28rem);
}
.backstage-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.45;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.play-link {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: rgba(4, 6, 14, .45);
    backdrop-filter: blur(8px);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.play-link span {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid var(--text);
}
.play-link:hover {
    border-color: #ff4f76;
    box-shadow: 0 0 24px rgba(217, 40, 85, .54);
    transform: translateY(-2px);
}

.split-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 36px;
    align-items: start;
}
.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card {
    min-height: 190px;
    transition: border-color .2s ease, transform .2s ease;
}
.service-card:hover { border-color: rgba(233, 30, 99, .45); transform: translateY(-3px); }
.savoir-faire-intro {
    display: grid;
    grid-template-columns: minmax(260px, .78fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    padding-top: clamp(42px, 6vw, 78px);
    padding-bottom: clamp(52px, 7vw, 96px);
}
.savoir-faire-intro h2 {
    max-width: 620px;
    font-size: clamp(2.05rem, 3vw, 3.32rem);
    line-height: 1.02;
}
.savoir-faire-lead {
    display: grid;
    gap: 16px;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.25vw, 1.16rem);
}
.savoir-faire-grid-section {
    padding-top: clamp(64px, 8vw, 104px);
    padding-bottom: clamp(64px, 8vw, 104px);
}
.savoir-faire-grid-section .section-heading {
    margin-bottom: 28px;
}
.savoir-faire-grid-section .section-heading h2 {
    font-size: clamp(2.05rem, 3.6vw, 4.35rem);
}
.savoir-faire-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.savoir-faire-card {
    scroll-margin-top: 110px;
    overflow: hidden;
    min-height: 320px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(217, 40, 85, .1), transparent 46%),
        linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.024));
    box-shadow: var(--shadow);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.savoir-faire-card:hover {
    border-color: rgba(255, 79, 118, .64);
    box-shadow: 0 0 0 1px rgba(217, 40, 85, .18), 0 0 34px rgba(217, 40, 85, .22);
    transform: translateY(-4px);
}
.savoir-faire-card:target,
.savoir-faire-card.is-targeted {
    border-color: rgba(255, 79, 118, .82);
    box-shadow: 0 0 0 1px rgba(217, 40, 85, .24), 0 0 42px rgba(217, 40, 85, .34);
}
.savoir-faire-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #050712;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transition: transform .45s ease, filter .45s ease;
}
.savoir-faire-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.08) brightness(1.08);
}
.savoir-faire-card-body {
    padding: clamp(20px, 2.4vw, 28px);
}
.savoir-faire-card span {
    display: block;
    margin-bottom: 18px;
    color: #ff4f76;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-shadow: 0 0 14px rgba(255, 79, 118, .62);
}
.savoir-faire-card h2,
.savoir-faire-card h3 {
    margin-bottom: 14px;
    font-size: clamp(1.18rem, 1.45vw, 1.55rem);
    line-height: 1.08;
}
.savoir-faire-tagline {
    color: var(--text) !important;
    font-size: .98rem;
    font-weight: 900;
}
.savoir-faire-card p {
    font-size: .96rem;
}
.savoir-faire-card p,
.process-timeline p,
.savoir-faire-cta p:not(.section-kicker) {
    color: var(--muted);
}
.savoir-faire-process {
    padding-top: clamp(64px, 8vw, 104px);
}
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding-top: 42px;
}
.process-timeline::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 79, 118, .18), rgba(192, 38, 211, .72), rgba(255, 79, 118, .18));
    box-shadow: 0 0 24px rgba(217, 40, 85, .3);
}
.process-timeline article {
    position: relative;
    padding: 0 clamp(18px, 2.2vw, 34px) 0 0;
}
.process-timeline article::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(255, 79, 118, .88);
    border-radius: 50%;
    background: var(--bg);
    box-shadow: 0 0 0 6px rgba(217, 40, 85, .1), 0 0 24px rgba(217, 40, 85, .45);
}
.process-timeline span {
    display: inline-flex;
    margin-bottom: 14px;
    color: #ff4f76;
    font-weight: 900;
    letter-spacing: .12em;
    text-shadow: 0 0 14px rgba(255, 79, 118, .62);
}
.process-timeline h3 {
    margin-bottom: 10px;
    font-size: clamp(1.2rem, 1.6vw, 1.6rem);
}
.savoir-faire-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(54px, 7vw, 86px);
    padding-top: clamp(28px, 5vw, 52px);
    padding-bottom: clamp(28px, 5vw, 52px);
    border-top: 1px solid rgba(217, 40, 85, .28);
    border-bottom: 1px solid rgba(217, 40, 85, .28);
    background:
        radial-gradient(circle at 10% 50%, rgba(217, 40, 85, .18), transparent 32%),
        rgba(255, 255, 255, .018);
}
.savoir-faire-cta h2 {
    max-width: 760px;
    margin-bottom: 12px;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1.02;
}
.savoir-faire-cta p {
    max-width: 650px;
    margin-bottom: 0;
}
.format-finder {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding-top: clamp(64px, 8vw, 104px);
    padding-bottom: clamp(64px, 8vw, 104px);
    background:
        radial-gradient(circle at 82% 20%, rgba(192, 38, 211, .12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .018), rgba(255, 255, 255, .006)),
        var(--bg);
}
.format-finder-home {
    border-top: 1px solid rgba(255, 255, 255, .07);
}
.format-finder-services {
    background:
        radial-gradient(circle at 16% 12%, rgba(217, 40, 85, .1), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .006)),
        var(--bg);
}
.format-finder-copy h2 {
    max-width: 620px;
    margin-bottom: 18px;
    font-size: clamp(2.05rem, 3vw, 3.32rem);
    line-height: 1.02;
}
.format-finder-copy p:not(.section-kicker) {
    max-width: 560px;
    color: var(--muted);
    font-size: 1.04rem;
}
.format-finder-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .14), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .026));
    box-shadow: 0 28px 90px rgba(0, 0, 0, .36), 0 0 46px rgba(217, 40, 85, .12);
}
.format-finder-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 79, 118, .08);
}
.format-finder-field {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}
.format-finder-field span {
    color: var(--text);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.format-finder-field select {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    color: var(--text);
    background: #080a15;
    font: inherit;
    font-weight: 800;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.format-finder-field select:focus {
    border-color: rgba(255, 79, 118, .72);
    box-shadow: 0 0 0 3px rgba(217, 40, 85, .18), 0 0 30px rgba(217, 40, 85, .18);
}
.format-finder-result {
    display: grid;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.format-finder-result > p:first-child {
    margin: 0;
    color: #ff4f76;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-shadow: 0 0 14px rgba(255, 79, 118, .46);
}
.format-finder-result h3 {
    margin: 0;
    font-size: clamp(1.55rem, 2.4vw, 2.45rem);
    line-height: 1.04;
}
.format-finder-result p[data-format-description] {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
}
.format-finder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.format-finder-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 79, 118, .34);
    border-radius: 999px;
    color: var(--text);
    background: rgba(217, 40, 85, .09);
    font-size: .82rem;
    font-weight: 900;
    box-shadow: 0 0 18px rgba(217, 40, 85, .12);
}
.about-intro {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: center;
    padding-top: clamp(58px, 7vw, 92px);
    padding-bottom: clamp(58px, 7vw, 92px);
}
.about-intro h2,
.about-team .section-heading h2,
.about-equipment .section-heading h2,
.about-values .section-heading h2 {
    max-width: 760px;
    font-size: clamp(2.05rem, 3vw, 3.32rem);
    line-height: 1.02;
}
.about-copy {
    display: grid;
    gap: 16px;
}
.about-story {
    display: grid;
    gap: 28px;
}
.about-intro .section-kicker {
    margin-bottom: 18px;
}
.about-history-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-top: 34px;
}
.about-history-timeline::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 79, 118, .2), rgba(192, 38, 211, .78), rgba(255, 79, 118, .2));
    box-shadow: 0 0 24px rgba(217, 40, 85, .3);
}
.about-history-timeline article {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.02));
}
.about-history-timeline article::before {
    content: "";
    position: absolute;
    top: -27px;
    left: 20px;
    width: 13px;
    height: 13px;
    border: 1px solid rgba(255, 79, 118, .88);
    border-radius: 50%;
    background: var(--bg-soft);
    box-shadow: 0 0 0 6px rgba(217, 40, 85, .1), 0 0 24px rgba(217, 40, 85, .45);
}
.about-history-timeline span {
    display: block;
    margin-bottom: 8px;
    color: #ff4f76;
    font-weight: 900;
    letter-spacing: .12em;
    text-shadow: 0 0 14px rgba(255, 79, 118, .62);
}
.about-history-timeline h3 {
    margin-bottom: 8px;
}
.about-copy p,
.about-card p,
.about-history-timeline p,
.about-values-timeline p {
    color: var(--muted);
}
.about-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-card {
    min-height: 230px;
    padding: clamp(22px, 2.6vw, 32px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(217, 40, 85, .1), transparent 44%),
        linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.024));
    box-shadow: var(--shadow);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.about-card:hover {
    border-color: rgba(255, 79, 118, .64);
    box-shadow: 0 0 0 1px rgba(217, 40, 85, .18), 0 0 34px rgba(217, 40, 85, .22);
    transform: translateY(-4px);
}
.about-card span {
    display: block;
    margin-bottom: 18px;
    color: #ff4f76;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-shadow: 0 0 14px rgba(255, 79, 118, .62);
}
.about-card h3 {
    margin-bottom: 12px;
    font-size: clamp(1.18rem, 1.45vw, 1.55rem);
}
.about-team-card {
    display: grid;
    grid-template-columns: minmax(160px, .48fr) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 30px);
    align-items: center;
}
.about-team-card img,
.about-team-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    object-fit: cover;
    background: #050712;
}
.about-team-placeholder {
    display: grid;
    place-items: center;
    color: #ff4f76;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    text-shadow: 0 0 24px rgba(255, 79, 118, .5);
}
.about-equipment-layout {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    gap: clamp(22px, 4vw, 48px);
    align-items: center;
    margin-bottom: 28px;
}
.about-equipment-video {
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(217, 40, 85, .18), rgba(124, 58, 237, .08)),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .1), transparent 30%),
        #050712;
    box-shadow: var(--shadow);
}
.about-equipment-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-equipment-video-inner {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    width: 100%;
    height: 100%;
    color: var(--text);
}
.about-equipment-video-inner span {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    background: rgba(4, 6, 14, .52);
    box-shadow: 0 0 42px rgba(217, 40, 85, .34);
}
.about-equipment-video-inner span::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 19px solid var(--text);
}
.about-equipment-video-inner p,
.about-equipment-copy p {
    max-width: 640px;
    margin: 0;
    color: var(--muted);
}
.about-equipment-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 24px;
}
.about-brand-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 79, 118, .22);
}
.about-brand-wall span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .035);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.about-brand-wall span:hover {
    color: var(--text);
    border-color: rgba(255, 79, 118, .5);
    box-shadow: 0 0 22px rgba(217, 40, 85, .18);
    transform: translateY(-2px);
}
.about-brand-logo-wall {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 138px));
    gap: 20px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 79, 118, .22);
}
.about-brand-logo-wall article {
    display: block;
}
.about-brand-logo-wall img,
.about-brand-logo-fallback {
    width: 100%;
    aspect-ratio: 1;
    padding: 12px;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    object-fit: contain;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.about-brand-logo-fallback {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(.78rem, 1vw, .95rem);
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
}
.about-brand-logo-wall article:hover img,
.about-brand-logo-wall article:hover .about-brand-logo-fallback {
    box-shadow: none;
    transform: scale(1.04);
}
.service-card p,
.article-card p,
.site-footer p,
.legal-copy p { color: var(--muted); }
.legal-section {
    padding-top: 42px;
}
.legal-layout {
    display: grid;
    grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}
.legal-summary {
    position: sticky;
    top: 118px;
    padding: 26px;
    border: 1px solid rgba(255, 79, 118, .16);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 20% 0%, rgba(217, 40, 85, .16), transparent 42%),
        rgba(255, 255, 255, .035);
    box-shadow: 0 0 34px rgba(0, 0, 0, .18);
}
.legal-summary h2 {
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}
.legal-summary p:not(.section-kicker) {
    margin-bottom: 20px;
    color: var(--muted);
}
.legal-copy {
    display: grid;
    gap: 18px;
}
.legal-card {
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
        rgba(7, 9, 18, .72);
}
.legal-card h2 {
    margin-bottom: 14px;
    color: var(--text);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}
.legal-card p {
    margin: 0 0 10px;
    line-height: 1.75;
}
.legal-card p:last-child {
    margin-bottom: 0;
}
.legal-card a {
    color: #ff6f91;
    font-weight: 800;
}
.legal-card a:hover {
    color: var(--text);
    text-shadow: 0 0 14px rgba(255, 79, 118, .42);
}
.legal-note,
.legal-updated {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .92rem;
}
.legal-note {
    color: #ffb0c1 !important;
}
.expertise-section {
    display: grid;
    grid-template-columns: minmax(230px, 330px) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}
.expertise-intro h2 {
    margin-bottom: 34px;
    max-width: 390px;
    font-size: clamp(2rem, 2.65vw, 3rem);
    line-height: 1.12;
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.expertise-item {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: start;
    min-height: 250px;
    padding: clamp(22px, 3vw, 34px) clamp(20px, 3vw, 38px);
    text-align: center;
    border-radius: 8px;
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.expertise-item:not(:nth-child(3n + 1)) {
    border-left: 1px solid rgba(255, 79, 118, .28);
}
.expertise-item:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 79, 118, .18);
}
.expertise-icon,
.expertise-item svg {
    width: 86px;
    height: 86px;
    margin-bottom: 22px;
    object-fit: contain;
    overflow: visible;
    color: var(--logo-red);
    filter: drop-shadow(0 0 16px rgba(217, 40, 85, .34));
}
.expertise-icon-empty {
    border: 1px solid rgba(255, 79, 118, .34);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 40, 85, .32), rgba(124, 58, 237, .1));
}
.expertise-item:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, rgba(217, 40, 85, .08), rgba(255, 255, 255, .025));
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22), 0 0 30px rgba(217, 40, 85, .16);
}
.expertise-item:hover .expertise-icon,
.expertise-item:hover svg {
    filter: drop-shadow(0 0 22px rgba(217, 40, 85, .58));
}
.expertise-item path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.expertise-item circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
}
.expertise-item h3 {
    margin-bottom: 12px;
    font-size: .98rem;
    text-transform: uppercase;
}
.expertise-item p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
}

.article-card { overflow: hidden; }
.article-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.contact-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(190px, .42fr) minmax(500px, 1fr) minmax(320px, .58fr);
    align-items: center;
    gap: clamp(34px, 5vw, 82px);
    width: 100%;
    min-height: 300px;
    margin: 0;
    padding: clamp(42px, 5vw, 72px) max(18px, calc((100vw - 1160px) / 2));
    overflow: hidden;
    border-top: 1px solid rgba(217, 40, 85, .22);
    border-bottom: 1px solid rgba(217, 40, 85, .46);
    background:
        radial-gradient(circle at 28% 36%, rgba(124, 58, 237, .18), transparent 32%),
        linear-gradient(90deg, #060814 0%, #090b16 46%, #0c0f1c 100%);
}
.contact-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 48%, rgba(217, 40, 85, .12), transparent 32%),
        linear-gradient(90deg, rgba(9, 11, 22, .02) 0%, rgba(9, 11, 22, .34) 24%, rgba(9, 11, 22, .82) 48%, rgba(9, 11, 22, .96) 72%);
    pointer-events: none;
}
.contact-band > * {
    position: relative;
    z-index: 1;
}
.contact-band-visual {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 0;
    width: min(58vw, 760px);
    background:
        linear-gradient(90deg, rgba(9, 11, 22, .04), rgba(9, 11, 22, .18) 34%, rgba(9, 11, 22, .78) 86%),
        url("../img/contact-filmmaker.png") center left / cover no-repeat;
}
.contact-band-content {
    grid-column: 2;
}
.contact-band-content h2 {
    max-width: 680px;
    margin-bottom: 16px;
    font-size: clamp(2.15rem, 3vw, 3.25rem);
    line-height: 1.03;
}
.contact-band-content p:not(.section-kicker) {
    max-width: 470px;
    margin-bottom: 24px;
    color: var(--muted);
}
.contact-band-details {
    display: grid;
    align-self: stretch;
    align-content: center;
    gap: clamp(34px, 5vw, 60px);
    padding-left: clamp(34px, 5vw, 70px);
    border-left: 1px solid rgba(255, 255, 255, .14);
}
.contact-info-list {
    display: grid;
    gap: 22px;
}
.contact-info-list a,
.contact-info-list > span {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    color: var(--text);
}
.contact-info-list svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--logo-red);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 12px rgba(217, 40, 85, .35));
}
.contact-info-list span span {
    color: var(--muted);
}
.contact-nowrap {
    white-space: nowrap;
}
.contact-socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
    margin-top: auto;
}
.contact-socials a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--logo-red);
    text-shadow: 0 0 14px rgba(217, 40, 85, .4);
}
.contact-socials svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.contact-socials a:nth-child(2) svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
}
.contact-socials a:nth-child(3) svg path:first-child {
    fill: currentColor;
}
.contact-socials a:nth-child(3) svg path:last-child {
    fill: var(--bg);
}

.page-hero {
    padding: calc(clamp(78px, 12vw, 150px) + 82px) 0 clamp(36px, 7vw, 74px);
}
.page-hero.compact h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
.page-hero.compact.portfolio-hero:not(.contact-hero) h1 {
    font-size: clamp(2.1rem, 3.4vw, 3.35rem);
}
.about-hero h1 {
    line-height: 1.08;
}
.portfolio-hero {
    padding-top: calc(82px + clamp(28px, 5vw, 54px));
    padding-bottom: clamp(12px, 2.5vw, 24px);
}
.savoir-faire-hero {
    position: relative;
    padding-bottom: clamp(58px, 7vw, 92px);
}
.page-down-link {
    position: absolute;
    left: 50%;
    bottom: clamp(12px, 2.5vw, 26px);
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 18px rgba(255, 79, 118, .55));
    animation: pageDownFloat 1.9s ease-in-out infinite;
}
.page-down-link span {
    width: 18px;
    height: 18px;
    border-right: 2px solid #ff4f76;
    border-bottom: 2px solid #ff4f76;
    transform: rotate(45deg);
    box-shadow: 5px 5px 16px rgba(217, 40, 85, .36);
}
.page-down-link::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: rgba(217, 40, 85, .08);
    box-shadow: 0 0 34px rgba(217, 40, 85, .34);
}
.page-down-link:hover {
    filter: drop-shadow(0 0 24px rgba(255, 79, 118, .78));
}
@keyframes pageDownFloat {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}
.portfolio-listing {
    padding-top: clamp(12px, 2vw, 24px);
    padding-bottom: clamp(56px, 7vw, 92px);
}
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}
.filter-button {
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    color: var(--muted);
    background: rgba(255, 255, 255, .035);
    font: inherit;
    font-size: .9rem;
    font-weight: 850;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.filter-button:hover,
.filter-button.is-active {
    color: var(--text);
    border-color: rgba(255, 79, 118, .68);
    background: rgba(217, 40, 85, .12);
    box-shadow: 0 0 24px rgba(217, 40, 85, .22);
}
.portfolio-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.portfolio-card {
    height: clamp(300px, 39vh, 350px);
}
.portfolio-card.is-hidden {
    display: none;
}
.portfolio-youtube-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: clamp(34px, 5vw, 58px);
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 12% 50%, rgba(217, 40, 85, .22), transparent 34%),
        linear-gradient(135deg, rgba(217, 40, 85, .12), transparent 44%),
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    box-shadow: 0 24px 80px rgba(0, 0, 0, .34), 0 0 38px rgba(217, 40, 85, .12);
}
.portfolio-youtube-cta h2 {
    max-width: 650px;
    margin-bottom: 12px;
    font-size: clamp(1.75rem, 2.7vw, 2.75rem);
    line-height: 1;
}
.portfolio-youtube-cta p:not(.section-kicker) {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
}

.client-reviews-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 0%, rgba(233, 30, 99, .12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .018), rgba(255, 255, 255, .01)),
        var(--bg);
}
.reviews-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}
.reviews-heading h2 {
    max-width: 620px;
    font-size: clamp(2.05rem, 3vw, 3.32rem);
    line-height: 1.02;
}
.reviews-marquee {
    margin-inline: calc(max(18px, calc((100vw - 1160px) / 2)) * -1);
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.reviews-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: reviewsScroll 34s linear infinite;
}
.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}
.review-card {
    width: min(390px, 82vw);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.028));
    box-shadow: var(--shadow);
}
.review-card p {
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.72;
}
.review-card footer {
    display: grid;
    gap: 4px;
    padding-top: 18px;
}
.review-card strong {
    color: var(--text);
}
.review-card span {
    color: var(--muted);
}
.review-stars {
    color: #ffb547;
    font-size: 1.08rem;
    letter-spacing: .04em;
    text-shadow: 0 0 18px rgba(255, 181, 71, .22);
}
@keyframes reviewsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 9px)); }
}

.client-logo-band {
    overflow: hidden;
    padding-top: clamp(58px, 7vw, 88px);
    padding-bottom: clamp(58px, 7vw, 88px);
    background:
        radial-gradient(circle at 82% 0%, rgba(124, 58, 237, .12), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01)),
        var(--bg-soft);
}
.client-logo-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}
.client-logo-heading h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(1.8rem, 2.8vw, 3.1rem);
    line-height: 1.02;
}
.client-logo-marquee {
    margin-inline: calc(max(18px, calc((100vw - 1160px) / 2)) * -1);
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.client-logo-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: clientLogoScroll 32s linear infinite;
}
.client-logo-marquee:hover .client-logo-track {
    animation-play-state: paused;
}
.client-logo-card {
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    padding: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.client-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(.9) brightness(1.04);
    opacity: .86;
    transition: opacity .2s ease, transform .2s ease, filter .2s ease;
}
.client-logo-card:hover img {
    opacity: 1;
    filter: saturate(1) brightness(1.12) drop-shadow(0 0 18px rgba(255, 79, 118, .14));
    transform: scale(1.04);
}
@keyframes clientLogoScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 9px)); }
}

.review-submit-section {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(360px, 1fr);
    gap: clamp(42px, 6vw, 92px);
    align-items: start;
    padding-top: clamp(62px, 7vw, 96px);
    padding-bottom: clamp(76px, 9vw, 128px);
}
.review-submit-section > * {
    min-width: 0;
}
.review-submit-intro h2 {
    max-width: 560px;
    font-size: clamp(2rem, 3.6vw, 3.45rem);
    line-height: 1.02;
}
.review-submit-intro p:not(.section-kicker) {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.75;
}
.review-form {
    display: grid;
    gap: 22px;
    min-width: 0;
    max-width: 100%;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(217, 40, 85, .16), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .026));
    box-shadow: 0 28px 90px rgba(0, 0, 0, .32), 0 0 38px rgba(217, 40, 85, .1);
}
.review-form label,
.review-form .rating-field {
    gap: 9px;
}
.review-form input,
.review-form select,
.review-form textarea {
    background: rgba(5, 7, 18, .58);
}
.review-form textarea {
    min-height: 180px;
}
.rating-field {
    display: grid;
    gap: 12px;
    border: 0;
    padding: 0;
    margin: 0;
}
.rating-field legend {
    color: var(--text);
    font-weight: 800;
}
.star-rating {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 100%;
    width: fit-content;
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(5, 7, 18, .46);
}
.star-rating-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}
.star-rating-item:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255, 181, 71, .1);
}
.star-rating-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.star-rating-item span {
    color: rgba(168, 173, 189, .46);
    font-size: 1.85rem;
    line-height: 1;
    text-shadow: none;
    transform-origin: center;
    transition: color .18s ease, text-shadow .18s ease, transform .18s ease;
}
.star-rating-item.is-active span,
.star-rating-item.is-preview span {
    color: #ffb547;
    text-shadow: 0 0 18px rgba(255, 181, 71, .38);
}
.star-rating-item.is-selected span {
    transform: scale(1.12);
}
.rating-caption {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 700;
}
.satisfaction-field {
    display: grid;
    gap: 12px;
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
.satisfaction-field legend {
    max-width: 100%;
    color: var(--text);
    font-weight: 800;
    white-space: normal;
}
.choice-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.choice-pills label {
    display: inline-flex;
}
.choice-pills input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.choice-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(5, 7, 18, .46);
    color: var(--muted);
    font-weight: 800;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.choice-pills input:checked + span {
    border-color: rgba(255, 79, 118, .48);
    background: rgba(217, 40, 85, .14);
    color: var(--text);
    box-shadow: 0 0 22px rgba(217, 40, 85, .14);
}
.conditional-feedback[hidden] {
    display: none;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.form-alert,
.form-success {
    margin: 0;
    padding: 12px 14px;
    border-radius: var(--radius);
}
.form-alert {
    background: rgba(233, 30, 99, .14);
    color: var(--text);
}
.form-success {
    background: rgba(34, 211, 238, .12);
    color: var(--text);
}
.youtube-cta-button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.youtube-cta-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.backstage-listing {
    padding-top: clamp(12px, 2vw, 24px);
}
.blog-tools {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}
.blog-tools .portfolio-filters {
    margin-bottom: 0;
}
.blog-search {
    position: relative;
    width: min(100%, 340px);
    margin-left: auto;
}
.blog-search span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.blog-search input {
    width: 100%;
    min-height: 42px;
    padding: 0 16px 0 42px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    color: var(--text);
    background:
        linear-gradient(135deg, rgba(217, 40, 85, .1), transparent 48%),
        rgba(9, 11, 22, .58);
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.blog-search::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 14px;
    height: 14px;
    border: 2px solid var(--logo-red);
    border-radius: 50%;
    transform: translateY(-58%);
    filter: drop-shadow(0 0 10px rgba(217, 40, 85, .36));
}
.blog-search::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 26px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: var(--logo-red);
    transform: rotate(45deg);
}
.blog-search input:focus {
    border-color: rgba(255, 79, 118, .72);
    box-shadow: 0 0 0 1px rgba(217, 40, 85, .18), 0 0 26px rgba(217, 40, 85, .18);
    background: rgba(9, 11, 22, .72);
}
.blog-search input::placeholder {
    color: rgba(168, 173, 189, .74);
}
.backstage-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.backstage-list-card {
    height: clamp(330px, 42vh, 390px);
}
.backstage-list-card.is-hidden {
    display: none;
}
.blog-empty {
    display: none;
    margin: 28px 0 0;
    color: var(--muted);
}
.blog-empty.is-visible {
    display: block;
}
.article-page { padding-bottom: 90px; }
.article-hero {
    padding-bottom: clamp(18px, 3vw, 34px);
}
.article-hero h1 {
    max-width: 920px;
    font-size: clamp(2.1rem, 3.4vw, 3.35rem);
    line-height: 1.02;
}
.article-hero p:not(.section-kicker) {
    max-width: 760px;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: .88rem;
}
.breadcrumb a {
    color: rgba(255, 255, 255, .78);
    transition: color .2s ease, text-shadow .2s ease;
}
.breadcrumb a:hover {
    color: var(--text);
    text-shadow: 0 0 14px rgba(217, 40, 85, .45);
}
.breadcrumb span:last-child {
    color: rgba(255, 255, 255, .48);
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.article-meta time,
.article-meta span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    color: var(--muted);
    background: rgba(255, 255, 255, .035);
    font-size: .88rem;
    font-weight: 800;
}
.article-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
    gap: clamp(26px, 4vw, 56px);
    width: min(1160px, calc(100% - 36px));
    margin-inline: auto;
}
.article-main {
    min-width: 0;
}
.article-cover {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: #050712;
    box-shadow: var(--shadow);
}
.article-content {
    margin-top: 38px;
    color: rgba(255,255,255,.9);
    font-size: clamp(1rem, 1.15vw, 1.12rem);
}
.article-content > * {
    max-width: 780px;
}
.article-content p {
    margin: 0 0 20px;
    color: rgba(255,255,255,.84);
}
.article-content h2 {
    margin: 44px 0 16px;
    font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}
.article-content h3 {
    margin: 34px 0 12px;
    font-size: clamp(1.25rem, 1.6vw, 1.55rem);
}
.article-content ul {
    max-width: 760px;
    margin: 0 0 24px;
    padding-left: 22px;
    color: rgba(255,255,255,.84);
}
.article-content li {
    margin-bottom: 8px;
}
.article-content a {
    color: #ff4f76;
    font-weight: 800;
}
.article-cta,
.article-sidebar-inner {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(217, 40, 85, .12), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    box-shadow: var(--shadow);
}
.article-cta {
    max-width: 780px;
    margin-top: 44px;
    padding: clamp(24px, 4vw, 36px);
}
.article-cta h2 {
    margin-bottom: 12px;
    font-size: clamp(1.75rem, 2.8vw, 2.8rem);
    line-height: 1;
}
.article-cta p:not(.section-kicker) {
    max-width: 620px;
    color: var(--muted);
}
.article-sidebar {
    min-width: 0;
}
.article-sidebar-inner {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 18px;
    padding: 20px;
}
.article-related-list {
    display: grid;
    gap: 12px;
}
.article-related-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    background: rgba(5, 7, 18, .58);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.article-related-card:hover {
    border-color: rgba(255, 79, 118, .68);
    box-shadow: 0 0 24px rgba(217, 40, 85, .2);
    transform: translateY(-2px);
}
.article-related-card img {
    grid-row: span 2;
    width: 82px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
}
.article-related-card span {
    color: #c65cff;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}
.article-related-card strong {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.2;
}
.work-player-section {
    width: 100%;
    margin: 0;
}
.work-player {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: #050712;
    box-shadow: var(--shadow);
}
.work-player img,
.work-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}
.work-player::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9,11,22,.38), rgba(217,40,85,.18)), linear-gradient(0deg, rgba(9,11,22,.45), transparent 58%);
    pointer-events: none;
}
.work-player.is-playing::after {
    display: none;
}
.work-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: clamp(76px, 9vw, 116px);
    height: clamp(76px, 9vw, 116px);
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    background: rgba(9, 11, 22, .48);
    backdrop-filter: blur(14px);
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 44px rgba(217, 40, 85, .38);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.work-play-button span {
    width: 0;
    height: 0;
    margin-left: 7px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid var(--text);
}
.work-play-button:hover {
    border-color: #ff4f76;
    box-shadow: 0 0 64px rgba(217, 40, 85, .6);
    transform: translate(-50%, -50%) scale(1.04);
}
.work-detail-content {
    display: grid;
    gap: 34px;
    margin-top: 38px;
}
.work-detail-content .article-content {
    margin-top: 0;
}
.work-detail-content .article-content h2 {
    margin-top: 0;
}
.work-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.work-tech-grid .service-card {
    min-height: auto;
}
.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 20px;
}
.contact-card a,
.contact-card p { display: block; margin-bottom: 12px; color: var(--muted); }
.contact-page-shell {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #080a14;
}
.contact-page-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(180deg, rgba(9, 11, 22, .32) 0%, rgba(9, 11, 22, .58) 38%, rgba(9, 11, 22, .82) 70%, rgba(9, 11, 22, .96) 100%),
        linear-gradient(90deg, rgba(9, 11, 22, .04) 0%, rgba(9, 11, 22, .4) 48%, rgba(9, 11, 22, .9) 100%),
        url("../img/contact-studio-bg.png") left 72px / 100vw auto no-repeat;
}
.contact-page-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .06) 0 1px, transparent 1px),
        radial-gradient(ellipse at 18% 28%, rgba(217, 40, 85, .2), transparent 36%),
        radial-gradient(ellipse at 82% 72%, rgba(124, 58, 237, .16), transparent 42%);
    background-size: 4px 4px, auto, auto;
    opacity: .9;
}
.contact-hero {
    position: relative;
    isolation: isolate;
    padding-bottom: clamp(8px, 1.8vw, 18px);
}
.contact-hero::before {
    content: none;
}
.contact-hero::after {
    content: none;
}
.contact-hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 3vw, 3rem);
    white-space: nowrap;
}
.contact-page-section {
    overflow: hidden;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(260px, .58fr) minmax(0, 1fr);
    gap: 22px;
    padding-top: clamp(12px, 2vw, 22px);
    padding-bottom: clamp(54px, 7vw, 86px);
    background: transparent;
}
.contact-page-section::before {
    content: none;
}
.contact-page-section::after {
    content: none;
}
.contact-page-card,
.contact-page-form {
    align-self: start;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .028)),
        linear-gradient(135deg, rgba(217, 40, 85, .08), transparent 42%);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, .36),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
}
.contact-page-card {
    border-color: rgba(217, 40, 85, .22);
}
.contact-page-form {
    border-color: rgba(255, 255, 255, .14);
}
.contact-page-card h2 {
    margin-bottom: 18px;
    font-size: clamp(1.35rem, 2vw, 2rem);
}
.contact-page-links {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}
.contact-page-links a {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}
.contact-page-links svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--logo-red);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(217, 40, 85, .3));
}
.contact-page-links a,
.contact-card .contact-phone-large {
    color: var(--text);
    font-size: clamp(1.05rem, 1.35vw, 1.28rem);
    font-weight: 900;
}
.contact-page-socials {
    justify-content: flex-start;
    margin-top: 22px;
}
.contact-page-form .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.vcard-page {
    min-height: calc(100vh - 92px);
    display: grid;
    place-items: center;
    padding: clamp(92px, 12vw, 150px) 18px clamp(56px, 8vw, 92px);
    background:
        radial-gradient(circle at 50% 10%, rgba(217, 40, 85, .24), transparent 28%),
        radial-gradient(circle at 18% 24%, rgba(124, 58, 237, .18), transparent 32%),
        linear-gradient(180deg, rgba(9, 11, 22, .9), var(--bg));
}
.vcard-card {
    width: min(620px, 100%);
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid rgba(255, 79, 118, .2);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
        rgba(7, 9, 18, .78);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .45), 0 0 40px rgba(217, 40, 85, .12);
    text-align: center;
}
.vcard-logo {
    display: flex;
    justify-content: center;
    width: min(260px, 78%);
    margin: 0 auto 28px;
}
.vcard-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(217, 40, 85, .22));
}
.vcard-card .section-kicker {
    margin-inline: auto;
    margin-bottom: 14px;
}
.vcard-card h1 {
    margin-bottom: 8px;
    font-size: clamp(2.3rem, 8vw, 4.7rem);
    line-height: 1;
}
.vcard-role {
    margin: 0 0 18px;
    color: #ff6f91;
    font-size: clamp(1.08rem, 3vw, 1.35rem);
    font-weight: 900;
}
.vcard-intro {
    max-width: 480px;
    margin: 0 auto 28px;
    color: var(--muted);
    line-height: 1.75;
}
.vcard-links {
    display: grid;
    gap: 12px;
    margin: 0 0 30px;
    text-align: left;
}
.vcard-links a,
.vcard-links > span {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(255, 255, 255, .035);
}
.vcard-links a:hover {
    border-color: rgba(255, 79, 118, .45);
    box-shadow: 0 0 24px rgba(217, 40, 85, .16);
}
.vcard-links svg {
    flex: 0 0 auto;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #ff4f76;
    stroke-width: 1.8;
}
.vcard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.tools-section {
    padding-top: 42px;
}
.tools-layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: clamp(26px, 5vw, 64px);
    align-items: stretch;
}
.tool-panel,
.tool-result-panel {
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(255, 79, 118, .16);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 20% 0%, rgba(217, 40, 85, .14), transparent 40%),
        rgba(255, 255, 255, .035);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}
.golden-hour-form {
    display: grid;
    gap: 16px;
}
.golden-hour-form h2,
.tool-result-panel h2 {
    margin-bottom: 8px;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
}
.tool-result-panel {
    display: grid;
    gap: 24px;
}
.tool-result-panel [data-golden-date-label] {
    color: var(--muted);
}
.golden-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.golden-timeline article {
    min-height: 150px;
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02)),
        rgba(255, 255, 255, .025);
}
.golden-timeline article:last-child {
    grid-column: span 2;
}
.golden-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}
.golden-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.golden-phase-blue .golden-icon,
.golden-phase-blue strong {
    color: #8fb7ff;
}
.golden-phase-gold .golden-icon,
.golden-phase-gold strong {
    color: #ffbd59;
}
.golden-phase-gold {
    position: relative;
    grid-column: span 2;
    min-height: 190px;
    border-color: rgba(255, 189, 89, .42) !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 189, 89, .22), transparent 46%),
        linear-gradient(135deg, rgba(255, 189, 89, .12), rgba(233, 30, 99, .055)),
        rgba(255, 255, 255, .035) !important;
    box-shadow: 0 18px 46px rgba(255, 189, 89, .1);
    transform: translateY(-4px);
}
.golden-phase-blue:first-child {
    grid-column: span 2;
    min-height: 190px;
}
.golden-phase-gold::after {
    content: "À privilégier";
    position: absolute;
    top: 14px;
    right: 14px;
    color: #090b16;
    padding: 5px 8px;
    border-radius: 999px;
    background: #ffbd59;
    font-size: .62rem;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.golden-phase-noon .golden-icon,
.golden-phase-noon strong {
    color: #ff6f91;
}
.golden-phase-noon {
    position: relative;
    grid-column: span 2;
    border-color: rgba(233, 30, 99, .5) !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(233, 30, 99, .2), transparent 42%),
        linear-gradient(135deg, rgba(233, 30, 99, .12), rgba(255, 255, 255, .02)),
        rgba(255, 255, 255, .025) !important;
}
.golden-phase-noon::after {
    content: "À éviter";
    position: absolute;
    top: 14px;
    right: 14px;
    color: #fff;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(233, 30, 99, .76);
    font-size: .62rem;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.golden-timeline article:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, .1);
}
.golden-timeline span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.golden-timeline strong {
    color: var(--text);
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
    white-space: nowrap;
}
.golden-timeline .golden-phase-gold strong,
.golden-timeline .golden-phase-blue strong {
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
}
.golden-note {
    padding: 18px;
    border: 1px solid rgba(255, 79, 118, .18);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 79, 118, .09), rgba(124, 58, 237, .08));
}
.golden-sun-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .025);
    color: var(--muted);
    font-size: .92rem;
}
.golden-sun-points strong {
    color: var(--text);
}
.golden-note strong {
    display: block;
    margin-bottom: 6px;
    color: #ff6f91;
}
.golden-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}
.golden-note p + p {
    margin-top: 10px;
}
.golden-warning {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #ffcfda !important;
}
.home-golden-widget {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, .65fr);
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
}
.home-golden-widget h2 {
    margin-bottom: 12px;
    font-size: clamp(2.1rem, 4vw, 4rem);
}
.home-golden-widget p:not(.section-kicker) {
    max-width: 520px;
    color: var(--muted);
}
.home-golden-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(255, 189, 89, .22);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 189, 89, .18), transparent 38%),
        rgba(255, 255, 255, .035);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .24);
}
.home-golden-card .golden-icon {
    width: 54px;
    height: 54px;
    color: #ffbd59;
}
.home-golden-card .golden-icon svg {
    width: 30px;
    height: 30px;
}
.home-golden-card p,
.home-golden-card span {
    margin: 0;
    color: var(--muted);
}
.home-golden-card strong {
    display: block;
    margin: 4px 0;
    color: var(--text);
    font-size: clamp(1.45rem, 3vw, 2.15rem);
}
.home-golden-card .text-link {
    grid-column: 1 / -1;
    margin-left: 0;
}
.spam-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.captcha-field input {
    max-width: 220px;
}

label { display: grid; gap: 8px; color: var(--muted); font-weight: 700; }
.label-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}
.help-tooltip {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--text);
    background: rgba(217, 40, 85, .18);
    border: 1px solid rgba(217, 40, 85, .5);
    font-size: .78rem;
    font-weight: 900;
    cursor: help;
}
.help-bubble {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    z-index: 20;
    width: min(280px, 82vw);
    padding: 12px 13px;
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(9, 11, 22, .96);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .38), 0 0 24px rgba(217, 40, 85, .18);
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity .18s ease, transform .18s ease;
}
.help-bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 10px;
    height: 10px;
    background: rgba(9, 11, 22, .96);
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    transform: translate(-50%, -5px) rotate(45deg);
}
.help-tooltip:hover .help-bubble,
.help-tooltip:focus .help-bubble {
    opacity: 1;
    transform: translate(-50%, 0);
}
input, textarea, select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(9, 11, 22, .85);
    color: var(--text);
    padding: 14px 15px;
    font: inherit;
}
input[readonly] {
    color: var(--muted);
    background: rgba(255, 255, 255, .045);
    cursor: not-allowed;
}
.field-help {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: .82rem;
}
.character-counter {
    text-align: right;
}
.character-counter.is-full {
    color: var(--logo-red);
    font-weight: 800;
}
.markdown-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.markdown-toolbar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    color: var(--text);
    font: inherit;
    font-size: .84rem;
    font-weight: 850;
    cursor: pointer;
}
.markdown-toolbar button:hover {
    border-color: rgba(217, 40, 85, .32);
    background: rgba(217, 40, 85, .12);
}
textarea { resize: vertical; }
.contact-form,
.article-form,
.admin-panel form:not(.admin-sidebar-logout):not(.row-action-form) { display: grid; gap: 16px; }
.admin-form-section {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .025);
}
.admin-form-section h2 {
    margin-bottom: 0;
    font-size: 1.25rem;
}
.form-help {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    width: 100%;
    border-top: 1px solid rgba(255, 79, 118, .16);
    background:
        radial-gradient(circle at 18% 0%, rgba(124, 58, 237, .16), transparent 34%),
        linear-gradient(180deg, rgba(16, 19, 33, .78), rgba(7, 9, 18, .96));
}
.footer-main {
    width: min(1160px, calc(100% - 36px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .7fr));
    gap: clamp(28px, 5vw, 64px);
    padding: 54px 0 46px;
}
.footer-brand-block {
    max-width: 380px;
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    width: min(240px, 100%);
    margin-bottom: 18px;
}
.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 18px rgba(217, 40, 85, .2));
}
.footer-title {
    margin: 0 0 16px;
    color: #ff4f76;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-accordion {
    border: 0;
}
.footer-accordion summary {
    list-style: none;
}
.footer-accordion summary::-webkit-details-marker {
    display: none;
}
.footer-accordion-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-column a,
.footer-cookie-link {
    width: fit-content;
    color: var(--muted);
    border: 0;
    padding: 0;
    background: transparent;
    font-size: .95rem;
    font-family: inherit;
    transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
    cursor: pointer;
}
.footer-column a:hover,
.footer-cookie-link:hover {
    color: var(--text);
    text-shadow: 0 0 16px rgba(255, 79, 118, .38);
    transform: translateX(3px);
}
.footer-contact p:not(.footer-title),
.footer-brand-block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}
.footer-socials {
    display: flex;
    gap: 12px;
    padding-top: 8px;
}
.footer-socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 79, 118, .22);
    border-radius: 50%;
    background: rgba(255, 255, 255, .035);
}
.footer-socials a:hover {
    border-color: rgba(255, 79, 118, .62);
    background: rgba(255, 79, 118, .12);
    box-shadow: 0 0 24px rgba(217, 40, 85, .22);
    transform: translateY(-2px);
}
.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: #ff4f76;
    stroke: #ff4f76;
    stroke-width: 1.7;
}
.footer-socials a:first-child svg,
.footer-socials a:nth-child(3) svg {
    stroke: none;
}
.footer-socials a:nth-child(2) svg {
    fill: none;
}
.footer-socials a:nth-child(3) svg path:last-child {
    fill: var(--bg);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(3, 4, 10, .44);
}
.footer-bottom p {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
    padding: 13px 0;
    color: rgba(168, 173, 189, .82);
    font-size: .86rem;
    text-align: center;
}
.cookie-banner,
.cookie-modal {
    position: fixed;
    z-index: 80;
}
.cookie-banner[hidden],
.cookie-modal[hidden] {
    display: none;
}
.cookie-banner {
    left: 50%;
    bottom: 18px;
    width: min(980px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(255, 79, 118, .22);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 15% 0%, rgba(217, 40, 85, .18), transparent 34%),
        rgba(7, 9, 18, .94);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .48), 0 0 32px rgba(217, 40, 85, .14);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}
.cookie-banner h2,
.cookie-modal h2 {
    margin-bottom: 8px;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
}
.cookie-banner p:not(.section-kicker),
.cookie-choice p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}
.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}
.text-button {
    border: 0;
    color: #ff6f91;
    background: transparent;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.text-button:hover {
    color: var(--text);
    text-shadow: 0 0 14px rgba(255, 79, 118, .42);
}
.cookie-modal {
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(3, 4, 10, .68);
    backdrop-filter: blur(12px);
}
.cookie-modal-panel {
    position: relative;
    width: min(620px, 100%);
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid rgba(255, 79, 118, .22);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 20% 0%, rgba(124, 58, 237, .2), transparent 36%),
        var(--bg-soft);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .52);
}
.cookie-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    color: var(--text);
    background: rgba(255, 255, 255, .04);
    font-size: 1.3rem;
    cursor: pointer;
}
.cookie-choice {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin: 18px 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .035);
}
.cookie-choice strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}
.cookie-choice span {
    color: #ff6f91;
    font-size: .9rem;
    font-weight: 800;
    white-space: nowrap;
}
.cookie-choice input {
    width: 22px;
    height: 22px;
    accent-color: #ff4f76;
}
.work-player .video-consent-message {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin: auto;
    padding: 22px;
    color: var(--text);
    text-align: center;
}
.work-player .video-consent-message p {
    margin: 0 0 14px;
    color: var(--muted);
}

.admin-body { min-height: 100vh; background: radial-gradient(circle at top, rgba(124,58,237,.22), transparent 34%), var(--bg); }
.admin-body .eyebrow {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: .78rem;
    letter-spacing: .08em;
    text-shadow: none;
}
.admin-app {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
}
.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 24px 18px;
    border-right: 1px solid var(--border);
    background: rgba(7, 9, 20, .72);
    backdrop-filter: blur(18px);
}
.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}
.admin-menu {
    display: grid;
    gap: 8px;
}
.admin-menu a,
.admin-sidebar-logout button {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: var(--muted);
    background: transparent;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, border-color .2s ease, text-shadow .2s ease;
}
.admin-menu svg,
.admin-sidebar-logout svg {
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.admin-menu a:hover,
.admin-sidebar-logout button:hover {
    color: var(--text);
    background: rgba(217, 40, 85, .1);
    border-color: rgba(217, 40, 85, .22);
    text-shadow: 0 0 16px rgba(217, 40, 85, .45);
}
.admin-sidebar-logout {
    margin-top: auto;
}
.admin-sidebar-logout button {
    width: 100%;
}
.admin-shell { width: min(1180px, calc(100% - 30px)); margin: 34px auto; }
.admin-panel.narrow { width: min(460px, 100%); margin: 10vh auto 0; }
.admin-panel + .admin-panel { margin-top: 24px; }
.admin-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 20px;
    margin-bottom: 24px;
}
.admin-welcome,
.admin-stats article {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    box-shadow: var(--shadow);
}
.admin-welcome {
    padding: 24px;
}
.admin-welcome-copy {
    max-width: 640px;
    margin: 12px 0 0;
    color: var(--muted);
}
.admin-welcome h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.18;
    letter-spacing: 0;
    font-weight: 850;
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.admin-stats article {
    display: grid;
    align-content: center;
    min-height: 132px;
    padding: 18px;
}
.admin-stats span {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--logo-red);
}
.admin-stats p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}
.admin-login-title {
    margin-bottom: 18px;
    font-size: 1.35rem;
    line-height: 1.15;
}
.admin-section-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.admin-section-grid a {
    display: grid;
    gap: 6px;
    min-height: 116px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .035);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.admin-section-grid a:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 40, 85, .32);
    background: rgba(217, 40, 85, .08);
}
.admin-section-grid strong {
    color: var(--text);
    font-size: 1rem;
}
.admin-section-grid span {
    color: var(--muted);
    font-size: .92rem;
}
.admin-login-hint {
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(217, 40, 85, .24);
    border-radius: var(--radius);
    background: rgba(217, 40, 85, .08);
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
}
.admin-login-hint strong {
    display: block;
    margin-bottom: 2px;
    color: var(--text);
}
.admin-login-hint span {
    color: var(--logo-red);
    font-weight: 800;
}
.admin-topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.admin-topbar h1 {
    margin: 0;
    font-size: clamp(1.15rem, 1.55vw, 1.55rem);
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: 0;
}
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 15px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
th { color: var(--muted); font-size: .82rem; text-transform: uppercase; }
.actions-col {
    width: 350px;
}
.row-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    min-width: 320px;
}
.admin-panel .row-actions form,
.row-actions form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
}
.row-actions a,
.row-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-size: .82rem;
    font-weight: 800;
    white-space: nowrap;
    line-height: 1;
    vertical-align: middle;
}
.row-actions a:hover,
.row-actions button:hover {
    color: var(--text);
    border-color: rgba(217, 40, 85, .3);
    background: rgba(217, 40, 85, .11);
}
.row-actions .danger-action:hover {
    color: #fff;
    border-color: rgba(233, 30, 99, .45);
    background: rgba(233, 30, 99, .16);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.alert { padding: 12px 14px; border-radius: var(--radius); background: rgba(233,30,99,.12); color: var(--text); }
.alert.success { background: rgba(34, 211, 238, .12); }
.admin-preview {
    width: min(220px, 100%);
    aspect-ratio: 2/3;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.admin-icon-preview {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(217, 40, 85, .32));
}
.admin-icon-preview-large {
    width: 96px;
    height: 96px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    color: var(--text);
    font-weight: 800;
}
.checkbox-label input {
    width: auto;
}
.contacts-table {
    min-width: 980px;
}
.reviews-table {
    min-width: 1060px;
}
.contacts-table td {
    vertical-align: top;
}
.contacts-table p {
    max-width: 340px;
    margin: 10px 0 0;
    color: var(--muted);
}
.contact-status-form {
    display: grid;
    gap: 10px;
    min-width: 220px;
}
.contact-status-form textarea {
    min-height: 86px;
}
.contact-delete-form {
    margin-top: 10px;
}
.contact-delete-form .danger-action {
    width: 100%;
    justify-content: center;
    border-color: rgba(233, 30, 99, .48);
    color: #fff;
    background: linear-gradient(135deg, rgba(233, 30, 99, .92), rgba(160, 24, 72, .9));
    box-shadow: 0 0 20px rgba(233, 30, 99, .18);
}
.media-library-table {
    min-width: 900px;
}
.media-library-table td p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: .86rem;
}
.media-library-preview,
.media-library-video {
    width: 72px;
    height: 48px;
    border-radius: var(--radius);
}
.media-library-preview {
    object-fit: cover;
}
.media-library-video {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #ff4f76;
    background: rgba(255, 255, 255, .035);
    font-size: .78rem;
    font-weight: 900;
}

@media (max-width: 920px) {
    .nav-toggle { display: block; }
    .site-nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: rgba(9, 11, 22, .98);
        border-bottom: 1px solid var(--border);
    }
    .nav-home-link span {
        font-size: inherit;
    }
    .site-nav.is-open { display: flex; }
    .portfolio-grid,
    .article-grid,
    .portfolio-grid.large,
    .service-grid.wide,
    .featured-work,
    .backstage-featured,
    .article-detail-layout,
    .contact-band,
    .contact-page-section,
    .format-finder,
    .home-golden-widget,
    .legal-layout,
    .tools-layout,
    .about-intro,
    .savoir-faire-intro,
    .process-timeline,
    .review-submit-section,
    .showreel-section,
    .expertise-section,
    .work-details,
    .split-section,
    .contact-layout { grid-template-columns: 1fr; }
    .featured-work,
    .backstage-featured {
        min-height: auto;
        padding-top: clamp(72px, 9vw, 96px);
        padding-bottom: clamp(72px, 9vw, 96px);
    }
    .featured-work-intro {
        min-height: auto;
    }
    .featured-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .portfolio-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .backstage-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .blog-tools {
        display: grid;
    }
    .blog-search {
        width: 100%;
        margin-left: 0;
    }
    .work-tech-grid {
        grid-template-columns: 1fr;
    }
    .article-sidebar-inner {
        position: static;
    }
    .article-related-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .legal-summary {
        position: static;
    }
    .portfolio-youtube-cta {
        display: grid;
    }
    .reviews-heading {
        display: grid;
        align-items: start;
    }
    .client-logo-heading {
        display: grid;
        align-items: start;
    }
    .savoir-faire-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-team-card,
    .about-equipment-layout,
    .about-history-timeline {
        grid-template-columns: 1fr;
    }
    .about-history-timeline {
        padding-top: 0;
        padding-left: 34px;
    }
    .about-history-timeline::before {
        top: 0;
        bottom: 0;
        left: 8px;
        right: auto;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, rgba(255, 79, 118, .2), rgba(192, 38, 211, .78), rgba(255, 79, 118, .2));
    }
    .about-history-timeline article::before {
        top: 22px;
        left: -32px;
    }
    .about-equipment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-brand-logo-wall {
        grid-template-columns: repeat(4, minmax(0, 108px));
    }
    .footer-main {
        grid-template-columns: 1.2fr 1fr;
    }
    .process-timeline article:not(:last-child) {
        border-right: 0;
        border-bottom: 0;
    }
    .process-timeline {
        gap: 30px;
        padding-top: 0;
    }
    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 8px;
        right: auto;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, rgba(255, 79, 118, .18), rgba(192, 38, 211, .72), rgba(255, 79, 118, .18));
    }
    .process-timeline article {
        padding: 0 0 0 44px;
    }
    .process-timeline article::before {
        top: 3px;
        left: 1px;
    }
    .savoir-faire-cta {
        display: grid;
    }
    .youtube-cta-button {
        width: fit-content;
    }
    .format-finder-panel {
        max-width: 760px;
    }
    .golden-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .golden-timeline article:not(:last-child) {
        border-right: 0;
    }
    .golden-timeline article:nth-child(odd) {
        border-right: 1px solid rgba(255, 79, 118, .15);
    }
    .golden-timeline article {
        border-bottom: 1px solid rgba(255, 79, 118, .12);
    }
    .golden-timeline article:last-child {
        grid-column: span 2;
    }
    .golden-phase-gold {
        grid-column: span 2;
    }
    .golden-phase-noon {
        grid-column: span 2;
    }
    .golden-phase-blue:first-child {
        grid-column: span 2;
    }
    .contact-page-section {
        padding-top: 18px;
    }
    .contact-hero h1 {
        white-space: normal;
    }
    .contact-band {
        min-height: auto;
        padding-top: 320px;
    }
    .contact-band::after {
        background: linear-gradient(180deg, rgba(9, 11, 22, .1) 0%, rgba(9, 11, 22, .86) 45%, rgba(9, 11, 22, .98) 100%);
    }
    .contact-band-visual {
        inset: 0 0 auto 0;
        width: 100%;
        height: 360px;
        background-position: center top;
    }
    .contact-band-content,
    .contact-band-details {
        grid-column: 1;
    }
    .contact-band-details {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .14);
        padding-top: 28px;
    }
    .contact-nowrap {
        white-space: normal;
    }
    .expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 0;
    }
    .expertise-item,
    .expertise-item:not(:nth-child(3n + 1)) {
        border-left: 0;
    }
    .expertise-item:nth-child(even) {
        border-left: 1px solid rgba(255, 79, 118, .28);
    }
    .expertise-item:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 79, 118, .18);
    }
    .admin-app {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        position: relative;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    .admin-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        flex: 1 1 360px;
    }
    .admin-sidebar-logout {
        margin-top: 0;
    }
    .admin-dashboard {
        grid-template-columns: 1fr;
    }
    .admin-section-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .site-header { min-height: 66px; }
    .site-header { padding-top: 5px; padding-bottom: 5px; }
    .site-nav { top: 66px; }
    .hero { min-height: 100vh; }
    .hero-content { padding: 70px 0; }
    h1 { font-size: 3rem; }
    .section-heading,
    .site-footer,
    .admin-topbar { align-items: flex-start; flex-direction: column; }
    .admin-menu,
    .admin-stats { grid-template-columns: 1fr; }
    .service-grid,
    .form-grid,
    .featured-work-grid,
    .portfolio-card-grid,
    .backstage-card-grid,
    .savoir-faire-grid,
    .about-card-grid,
    .about-equipment-grid,
    .about-brand-logo-wall,
    .article-related-list,
    .expertise-grid { grid-template-columns: 1fr; }
    .savoir-faire-card:last-child:nth-child(odd) {
        grid-column: auto;
    }
    .expertise-item,
    .expertise-item:not(:nth-child(3n + 1)),
    .expertise-item:nth-child(even),
    .expertise-item:nth-child(n + 3),
    .expertise-item:nth-child(n + 4) {
        border-left: 0;
        border-top: 1px solid rgba(255, 79, 118, .18);
        padding-top: 28px;
    }
    .featured-film-card,
    .backstage-card,
    .backstage-card img,
    .featured-film-card img {
        min-height: 360px;
    }
    .work-player {
        aspect-ratio: 4/5;
    }
    .contact-band {
        padding-top: 260px;
    }
    .contact-band-visual {
        height: 300px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        padding: 42px 0 34px;
        gap: 12px;
    }
    .footer-brand-block {
        margin-bottom: 14px;
    }
    .footer-accordion {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }
    .footer-accordion:last-of-type {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
    .footer-accordion summary {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0;
        padding: 17px 0;
        cursor: pointer;
    }
    .footer-accordion summary::after {
        content: "+";
        color: #ff6f91;
        font-size: 1.2rem;
        font-weight: 900;
    }
    .footer-accordion[open] summary::after {
        content: "−";
    }
    .footer-accordion-content {
        padding: 0 0 18px;
    }
    .cookie-banner {
        grid-template-columns: 1fr;
    }
    .cookie-actions {
        justify-content: flex-start;
    }
    .cookie-choice {
        align-items: flex-start;
        flex-direction: column;
    }
    .footer-logo {
        width: min(220px, 100%);
    }
    .footer-column a:hover,
    .footer-cookie-link:hover {
        transform: none;
    }
    .about-brand-logo-wall {
        grid-template-columns: repeat(3, minmax(0, 72px));
        gap: 12px;
        padding-top: 16px;
    }
    .about-brand-logo-wall img,
    .about-brand-logo-fallback {
        padding: 7px;
    }
    .about-brand-logo-fallback {
        font-size: .62rem;
        line-height: 1.08;
    }
    .youtube-cta-button {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
    .format-finder .actions {
        display: grid;
    }
    .format-finder .btn {
        width: 100%;
    }
    .golden-timeline {
        grid-template-columns: 1fr;
    }
    .golden-timeline article,
    .golden-timeline article:nth-child(odd) {
        border-right: 0;
    }
    .golden-timeline article:last-child {
        grid-column: auto;
    }
    .golden-phase-gold {
        grid-column: auto;
        min-height: 170px;
    }
    .golden-phase-noon {
        grid-column: auto;
    }
    .golden-phase-blue:first-child {
        grid-column: auto;
        min-height: 170px;
    }
}
