@font-face {
    font-family: 'Europa Prima';
    src: url('../assets/fonts/EuropaPrima-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: block;
}

:root {
    --font-heading: 'Europa Prima', 'Public Sans', sans-serif;
    --font-body: 'Public Sans', sans-serif;

    
    --bg-color-light: #f5f5f5;
    --text-color-light: #1a1a1a;
    --accent-color-light: #333;

    
    --bg-color-dark: #0a0a0a;
    --text-color-dark: #f0f0f0;
    --accent-color-dark: #eee;

    --transition-speed: 0.5s;
    --p-font-size: clamp(0.95rem, 1.4vw, 1.25rem);
    --p-line-height: 1.3;

    
    --global-title-size: clamp(1.8rem, 4vw, 2.5rem);
    --global-text-size: 1.1rem;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.3;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.theme-ready,
body.theme-ready .manifesto-scroller {
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

body.theme-ready .main-header,
body.theme-ready .site-footer,
body.theme-ready .footer-link,
body.theme-ready .theme-btn,
body.theme-ready svg,
body.theme-ready svg path,
body.theme-ready .hamburger span,
body.theme-ready .slide-title,
body.theme-ready .slide-text,
body.theme-ready .manifesto-first-title,
body.theme-ready .enter-button,
body.theme-ready .home-discover-btn,
body.theme-ready .site-footer span,
body.theme-ready .footer-right span {
    transition: background-color var(--transition-speed) ease,
                color var(--transition-speed) ease,
                border-color var(--transition-speed) ease,
                fill var(--transition-speed) ease,
                stroke var(--transition-speed) ease;
}

body.theme-ready .main-nav a,
body.theme-ready .manifesto-close-btn {
    transition: background-color var(--transition-speed) ease,
                color var(--transition-speed) ease,
                border-color var(--transition-speed) ease,
                opacity 0.3s ease;
}


h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.manifesto h1,
.service-item h3,
.service-detail h3 {
    font-size: var(--global-title-size) !important;
    text-align: left !important;
    line-height: 1.1 !important;
}


.premium-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 6rem) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1 !important;
    text-align: left !important;
    opacity: 0;
    animation: textGlowIn 2s ease-out forwards;
}

p,
.slide-text,
.premium-intro-small,
.premium-intro,
.text-container p,
.service-detail p,
.manifesto p,
.premium-date {
    font-size: var(--global-text-size) !important;
    line-height: 1.4 !important;
    text-align: left !important;
    hyphens: none !important;
}


.premium-hero {
    height: 70svh;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    
    align-items: flex-start;
    
    padding: 0 5vw 5svh 12vw;
    
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.premium-date {
    letter-spacing: 0.3em;
    margin-top: 1rem;
    opacity: 0;
    animation: textGlowIn 2s ease-out 0.5s forwards;
    opacity: 0.7;
}

@keyframes textGlowIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


.editorial-content {
    padding: 15svh 5vw 10svh 5vw;
    
    max-width: 1600px;
    margin: 0 auto;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    
    margin-bottom: 1rem;
    align-items: start;
}

.editorial-col-4 {
    grid-column: span 4;
}

.editorial-col-6 {
    grid-column: span 6;
}

.editorial-col-8 {
    grid-column: span 8;
}

.editorial-col-12 {
    grid-column: span 12;
}

@media (max-width: 900px) {
    .editorial-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}


.editorial-image-container {
    width: 100%;
    overflow: hidden;
    background: #000;
}

.editorial-image-container img,
.editorial-image-container video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.editorial-image-container:hover img,
.editorial-image-container:hover video {
    filter: grayscale(0%) contrast(1);
}


.minimal-editorial-content {
    padding: 10svh 5vw 10svh 12vw;
    
    max-width: 1600px;
    margin: 0 auto;
}

.minimal-text-block {
    max-width: 60%;
    margin-bottom: 2rem;
}

.minimal-intro {
    font-size: var(--global-text-size) !important;
    line-height: 1.5 !important;
    margin-bottom: 1.5rem;
}

.minimal-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
    margin-bottom: 4rem;
}

.minimal-image-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.minimal-image-grid.grid-1 {
    grid-template-columns: 1fr;
}

.minimal-image-item {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #000;
}

.minimal-image-item img,
.minimal-image-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.minimal-image-item:hover img,
.minimal-image-item:hover video {
    filter: grayscale(0%);
}

.minimal-services-block {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
    
    width: 100%;
}

.minimal-service h3 {
    font-size: var(--global-text-size) !important;
    
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .premium-hero {
        padding-left: 5vw;
        
        align-items: flex-start;
        height: auto;
        padding-top: 20svh;
    }

    .minimal-editorial-content {
        padding-left: 5vw;
    }

    .minimal-text-block {
        max-width: 100%;
    }

    .minimal-image-grid,
    .minimal-image-grid.grid-3 {
        grid-template-columns: 1fr;
    }

    .minimal-services-block {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}


body.light-theme {
    background-color: var(--bg-color-light);
    color: var(--text-color-light);
}

body.dark-theme {
    background-color: var(--bg-color-dark);
    color: var(--text-color-dark);
}


.video-background {
    position: absolute;
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    transition: background-color var(--transition-speed);
}

body.light-theme .video-overlay {
    background-color: transparent;
}

body.dark-theme .video-overlay {
    background-color: rgba(0, 0, 0, 0.15);
    
}


body.light-theme .manifesto-overlay {
    background-color: rgba(0, 0, 0, 0.08);
}

body.dark-theme .manifesto-overlay {
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}


body.dark-theme #bg-video {
    filter: contrast(1.15) saturate(1.3) brightness(1.05);
}


.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
    
}


.site-logo-link {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 2000;
    display: inline-block;
    text-decoration: none;
    transition: opacity var(--transition-speed);
}

.site-logo-link:hover {
    opacity: 0.8;
}

.site-logo {
    height: 140px;
    
    width: auto;
    display: block;
}


.site-logo-link .logo-mobile {
    display: none !important;
}




body.light-theme .site-logo.logo-dark {
    display: none;
}

body.light-theme .site-logo.logo-light {
    display: block;
    filter: none !important;
}


body.dark-theme .site-logo.logo-light {
    display: none;
}

body.dark-theme .site-logo.logo-dark {
    display: block;
    filter: none !important;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.main-nav a {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: opacity 0.3s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}




.theme-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: inherit;
    padding: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.theme-btn:hover {
    transform: rotate(15deg);
}


body.light-theme .icon-sun {
    display: none;
}

body.light-theme .icon-moon {
    display: block;
}

body.dark-theme .icon-sun {
    display: block;
}

body.dark-theme .icon-moon {
    display: none;
}


.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 8rem 0;
}

.work-section.section-padding,
.services-section.section-padding,
.legal-section-wrapper.section-padding {
    padding-top: 0rem !important;
}


.hero {
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    
    width: 100%;
}

.hero-content {
    z-index: 2;
    animation: fadeIn 2s ease-out;
}

.manifesto h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    
    
}

.manifesto p {
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    opacity: 0.8;
}


.cta-button {
    text-decoration: none;
    padding: 1rem 3rem;
    
    border: 1px solid currentColor;
    color: inherit;
    font-family: var(--font-body);
    font-size: 0.8rem;
    
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    background: transparent;
    margin-top: 75svh;
    display: inline-block;
}

body.light-theme .cta-button {

    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}


.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;


}

body.dark-theme .cta-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;

}


.global-enter-btn {
    position: absolute;
    bottom: 12%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    z-index: 20;
}


.manifesto-detail {
    text-align: center;
}


.manifesto-text p {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}


.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.25rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.project-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #000;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

body.theme-ready .project-image img {
    transition: transform 0.6s ease, filter 0.6s ease;
}

.project-image.coming-soon {
    background: #e0e0e0 !important;
    color: #999 !important;
    font-family: var(--font-heading);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 300;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.dark-theme .project-image.coming-soon {
    background: #111 !important;
    color: #444 !important;
}

.project-image.coming-soon span {
    text-decoration: none !important;
}

.project-image.coming-soon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 50%,
            transparent 100%);
    animation: shimmer 3s infinite linear;
    will-change: transform;
}

@keyframes shimmer {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(50%);
    }
}

.project-card:hover .project-image.coming-soon {
    background: #d0d0d0 !important;
}

body.dark-theme .project-card:hover .project-image.coming-soon {
    background: #1a1a1a !important;
}

.project-card:hover .project-image img,
.project-card:active .project-image img,
.project-card:focus .project-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.zoomed-extra {
    transform: scale(1.05);
}

.project-card:hover .project-image img.zoomed-extra {
    transform: scale(1.1);
}

.zoom-fix {
    transform: scale(1.35);
    
}

.project-card:hover .project-image img.zoom-fix {
    transform: scale(1.4);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-overlay h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.6vw, 1.5rem) !important;
    
    font-weight: 600;
    line-height: 1.3 !important;
    
    margin-bottom: 0.5rem;
}

.project-overlay p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    text-align: center;
}

.service-item {
    flex: 1 1 300px;
    padding: 2rem;
    border: 1px solid transparent;
    
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}


.image-container,
.video-container {
    flex: 0 0 420px;
    position: relative;
    max-width: 420px;
    width: 100%;
    margin: 0;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.premium-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20svh;
    gap: 4vw;
    flex-wrap: wrap;
}

.premium-block.reverse {
    flex-direction: row-reverse;
}

.image-container img,
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: filter 0.8s ease, transform 0.8s ease;
}

.text-container {
    flex: 1 1 320px;
    max-width: 580px;
}


.video-container.full-width {
    flex: none;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
}


.image-container img {
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.8s ease, transform 0.8s ease;
}

.image-container:hover img,
.image-container:active img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.02);
}


.project-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.service-detail {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    padding-left: 2rem;
    transition: border-color 0.4s ease;
}

body.dark-theme .service-detail {
    border-left-color: rgba(255, 255, 255, 0.2);
}

.service-detail:hover {
    border-color: currentColor;
}

.service-detail h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-detail p {
    font-weight: 300;
    opacity: 0.75;
}

@media (max-width: 900px) {

    .premium-block,
    .premium-block.reverse {
        flex-direction: column !important;
        gap: 2rem;
        align-items: stretch;
    }

    .image-container,
    .video-container {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .text-container {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .premium-intro {
        font-size: 2rem !important;
    }
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    
    margin-bottom: 1.5rem;
    font-style: italic;
    
}

.service-item p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.3;
    opacity: 0.7;
}


.contact-section {
    text-align: center;
    border-top: 1px solid currentColor;
}

.contact-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s;
}

.contact-link:hover {
    border-bottom-color: currentColor;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}


.scroll-indicator {
    margin-top: 1rem;
    animation: bounce 2s infinite;
}

.icon-scroll-arrow {
    font-size: 2rem;
    color: inherit;
    display: block;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}




@media (max-width: 768px) {
    .manifesto h1 {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }

    .section-title {
        font-size: 2rem;
    }

    .main-nav {
        display: none;
        
    }

    .manifesto p {
        padding: 0 1rem;
    }

    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    
    .project-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2), transparent);
        padding: 1.5rem 2rem;
        
    }

    .project-image img {
        filter: grayscale(100%);
        
    }
}


.manifesto-marquee {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    
    transform: translateY(-50%);
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 2rem;
    
    text-transform: uppercase;
    letter-spacing: 5px;
    padding-right: 2rem;
    opacity: 0.8;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.menu-page {
    height: 100svh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: none;
}

.menu-split {
    display: flex;
    height: 100%;
    width: 100%;
}

.menu-side {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: flex 0.5s ease;
}

.menu-side:hover {
    flex: 1.5;
    
}

.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: white;
    
    position: relative;
}

.menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: -1;
    filter: brightness(0.6) grayscale(100%);
}

.menu-link:hover .menu-bg {
    transform: scale(1.1);
    filter: brightness(0.8) grayscale(0%);
}

.menu-text {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: clamp(2.5rem, 6.5vw, 6.5rem) !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-link:hover .menu-text {
    transform: scale(1.05);
}


.page-content {
    padding-top: 100px;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}


.main-header a {
    color: inherit;
}


.main-nav a.active {
    border-bottom: none;
}


@media (max-width: 768px) {
    .menu-split {
        flex-direction: column;
    }

    .marquee-content span {
        font-size: 1.5rem;
    }
}




body.dark-theme .cta-button {


    border-color: rgba(255, 255, 255, 0.8);
}

body.dark-theme .cta-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;

}

body.dark-theme .manifesto-marquee span {}

body.dark-theme .section-title {}

body.dark-theme .menu-text {}




.services-section {
    position: relative;
    
}

.services-interactive {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
    
}

.service-row {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2rem;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-row:hover {
    opacity: 1 !important;
    transform: translateX(20px);
}


.services-interactive:hover .service-row:not(:hover) {
    opacity: 0.3;
}

.service-num {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1rem;
    margin-right: 3rem;
    margin-top: 0.25rem;
    opacity: 0.5;
}

.service-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.service-info p {
    font-family: var(--font-body);
    
    margin-top: 0.5rem;
    opacity: 0.7;
    max-width: 500px;
}

.read-more {
    opacity: 0 !important;
    transition: opacity 0.3s ease;
}

.service-row:hover .read-more {
    opacity: 1 !important;
}




body.dark-theme .service-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark-theme .service-info h3 {}

body.dark-theme .services-interactive:hover .service-row:hover h3 {}


.hamburger {
    display: none;
    
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    height: 30px;
    width: 40px;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: currentColor;
    transition: transform 0.3s, opacity 0.3s;
}


.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background-color: var(--bg-color-light);
    
    z-index: 150;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.dark-theme .mobile-nav-overlay {
    background-color: var(--bg-color-dark);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s 0.2s, transform 0.4s 0.2s;
}

.mobile-theme-btn {
    font-size: 1.5rem;
    
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s 0.3s, transform 0.4s 0.3s;

    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    
    height: 60px;
    
    border: 1px solid currentColor;
    
    border-radius: 50%;
    
    margin-left: auto;
    
    margin-right: auto;
    cursor: pointer;
}

body.menu-open .mobile-theme-btn {
    opacity: 1;
    transform: translateY(0);
}


body.menu-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

body.menu-open .mobile-nav-links a {
    opacity: 1;
    transform: translateY(0);
}

body.menu-open {
    overflow: hidden;
    
}


body.menu-open .hamburger span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
    transform: translateY(-11px) rotate(-45deg);
}




.hamburger span {
    background-color: currentColor;
}


body.dark-theme .hamburger span {
    background-color: #ffffff;
}


body.light-theme .hamburger span {
    background-color: #000000;
}


body.menu-body .hamburger {
    color: white;
}

body.menu-body .hamburger span {
    background-color: white;
}





body.menu-open.light-theme .hamburger span {
    background-color: #000000 !important;
}


body.menu-open.dark-theme .hamburger span {
    background-color: #ffffff !important;
}




@media (max-width: 768px) {

    
    .services-interactive {
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .service-row {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 1.5rem;
        width: 100%;
    }

    .service-num {
        margin-bottom: 0.2rem;
        font-size: 0.8rem;
        opacity: 0.6;
    }

    .service-info h3 {
        font-size: 1.1rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
    }

    .service-info p {
        max-width: 100%;
        padding: 0 1rem;
    }

    
    .services-interactive:hover .service-row:not(:hover) {
        opacity: 1;
        
    }

    .service-row:hover {
        transform: none;
        
    }

    .hamburger {
        display: flex;
        
    }

    .hamburger span {
        
        transform-origin: center;
    }

    
    .hamburger.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        transform: translateY(-13px) rotate(-45deg);
    }

    

    
    .projects-grid {
        grid-template-columns: 1fr;
        
        gap: 2rem;
    }

    .project-card {
        height: auto;
        
    }

    
    .menu-page {
        height: 100svh;
        
        min-height: 600px;
        
        overflow-y: auto;
    }

    .menu-split {
        flex-direction: column;
        height: 100%;
    }

    .menu-side {
        height: 50%;
        width: 100%;
        min-height: 300px;
        
    }

    .menu-text {
        font-size: 2rem;
        
    }

    
    body.menu-body .main-header,
    body.menu-body .main-header a,
    body.menu-body .hamburger {
        color: white !important;

        
    }

    
    .contact-section .section-title {
        font-size: 2.5rem !important;
        
    }

    .contact-section p {
        font-size: var(--p-font-size) !important;
        padding: 0 1rem;
    }

    .contact-link {
        font-size: 1.5rem !important;
        word-break: break-all;
        
    }

    
    .page-content {
        padding-top: 80px;
        padding-bottom: 0 !important;
        display: flex;
        flex-direction: column;
    }

    .container {
        padding: 0 1.5rem;
    }
}


.site-footer {
    padding: 2rem 5%;
    border-top: none;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading) !important; /* Europa Prima */
    font-weight: 700;
    text-transform: none !important; /* Retain mixed casing globally */
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    opacity: 1;
    background-color: transparent;
    z-index: 10;
    position: relative;
    width: 100%;
}

.site-footer a {
    text-transform: none !important;
}


.footer-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-right {
    display: flex;
    gap: 2rem;
    align-items: baseline;
}

.footer-link {
    color: inherit;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.icon-instagram {
    width: 18px;
    height: 18px;
    fill: currentColor;
    vertical-align: middle;
}


.hero {
    min-height: 100svh;
    
    height: auto;
    display: flex;
    flex-direction: column;
}

.hero-content {
    flex: 1;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    width: 100%;
}






@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-bottom: 2rem;
    }

    .footer-left,
    .footer-right {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
}


.manifesto-page {
    overflow: hidden !important;
}

.manifesto-page .main-header {
    background: transparent;
}

.manifesto-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
    padding: 0 2rem;
}

.manifesto-title {
    font-family: var(--font-heading);
    
    font-size: clamp(1rem, 1.8vw, 1.8rem);
    font-weight: 300;
    
    letter-spacing: 2px;
    
    line-height: 1.3;
    
    margin-bottom: 4rem;
    opacity: 0.85;
    
}

body.dark-theme .manifesto-title {}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    background-color: rgba(0, 0, 0, 0.85);
    
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 90%;
    max-width: 850px;
    
    height: 70svh;
    background-color: var(--bg-color-light);
    
    color: var(--text-color-light);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

body.dark-theme .modal-content {
    background-color: var(--bg-color-dark);
    color: var(--text-color-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #fff !important;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
    padding: 0;
    margin: 0;
    line-height: 1.1;
}

.modal-close:hover {
    transform: scale(1.1) rotate(90deg);
}

.modal-split-view {
    display: flex !important;
    flex-direction: row !important;
    border-radius: 8px;
    
    background-color: #000 !important;
    
    color: #fff !important;
}

.modal-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    container-type: size;
    
}

#modal-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    
    object-fit: cover;
    
    object-position: center;
    display: block;
    filter: grayscale(100%);
    transition: opacity 0.4s ease, filter 0.6s ease !important; 
}

#modal-img:hover,
#modal-img:active {
    filter: grayscale(0%);
}

@media (min-width: 769px) {
    #modal-img[src*="Creative_Direction"] {
        width: 100cqh !important;
        height: 100cqw !important;
        max-width: none !important;
        max-height: none !important;
        transform: rotate(90deg);
        object-fit: cover !important;
        transition: opacity 0.4s ease, filter 0.6s ease !important; 
    }
}

@media (max-width: 768px) {
    #modal-img[src*="Creative_Direction"] {
        width: 100cqh !important;
        height: 100cqw !important;
        max-width: none !important;
        max-height: none !important;
        transform: rotate(90deg);
        object-fit: cover !important;
        transition: opacity 0.4s ease, filter 0.6s ease !important; 
    }
}

.modal-text-col {
    flex: 1;
    padding: 1.5rem 2.5rem 3rem 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.modal-text-col h3 {
    font-family: var(--font-heading) !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    margin-top: 0 !important;
    margin-bottom: 1.2rem !important;
    padding-right: 3rem;
    text-transform: uppercase;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-text-col p {
    font-family: var(--font-body);
    font-size: var(--global-text-size) !important;
    line-height: 1.4 !important;
    margin-bottom: 1.2rem !important;
    opacity: 0.8;
    text-align: left !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
}

.modal-text-col br {
    display: none;
}

.modal-text-col h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}


.service-details blockquote {
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    padding-left: 1rem;
    margin-top: 1.5rem;
    opacity: 0.7;
    font-size: 0.95rem;
}



.read-more {
    font-family: var(--font-body);
    font-size: 0.65rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    margin-top: 0.5rem;
    transition: opacity 0.3s ease;
}

.service-row:hover .read-more {
    opacity: 1;
}

@media (max-width: 900px) {
    .modal-content {
        height: auto !important;
        max-height: 85svh !important;
    }

    .modal-split-view {
        flex-direction: column !important;
        overflow-y: auto !important;
        max-height: 85svh !important;
        display: flex !important;
    }

    .modal-text-col {
        display: contents !important;
    }

    #modal-title {
        order: 1 !important;
        font-size: clamp(1.4rem, 6.2vw, 1.8rem) !important;
        padding: 1.8rem 4.2rem 0.5rem 2rem !important;
        margin-bottom: 0.5rem !important;
        text-transform: uppercase;
        font-family: var(--font-heading) !important;
        font-weight: 700 !important;
    }

    .modal-close {
        top: 1.3rem !important;
        right: 2rem !important;
        font-size: 1.8rem !important;
        line-height: 1.1 !important;
    }

    .modal-image-col {
        order: 2 !important;
        width: 100% !important;
        height: calc(90vw * 1.25) !important;
        aspect-ratio: 4 / 5 !important;
        padding: 0 2rem 1.5rem 2rem !important;
        box-sizing: border-box !important;
        container-type: size !important;
        flex-shrink: 0 !important;
    }

    #modal-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 4px !important;
    }

    
    #modal-img[src*="Artist_Management"] {
        object-position: center 28% !important;
    }

    #modal-body {
        order: 3 !important;
        padding: 0 2rem 3rem 2rem !important;
    }
}


.manifesto-slider {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2vw, 1.8rem) !important;
    font-weight: 700;
    text-transform: none;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.slide-text {
    font-family: var(--font-body);
    font-weight: 300;
    margin-bottom: 0;
    text-align: left !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
}

.slide-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.25em;
    margin-bottom: 0;

}

.slide-logo-img {
    height: 12svh;
    min-height: 80px;
    max-height: 120px;
    width: auto;
    margin: 0 auto;
    display: block;

}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-color-dark);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 1rem;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

body.light-theme .slider-arrow {
    color: var(--text-color-light);
}

.slider-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.prev-arrow {
    left: -2rem;
}

.next-arrow {
    right: -2rem;
}


@media (max-width: 768px) {

    
    .manifesto-hero {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 90px;
        padding-bottom: 15svh;
        box-sizing: border-box;
        min-height: 100svh;
    }

    .manifesto-content {
        width: 100%;
        padding: 0 2.5rem;
    }

    
    .manifesto-slider {
        position: static;
        height: auto;
        max-height: calc(100svh - 90px - 15svh - 2rem);
        overflow-y: auto;
        overflow-x: hidden;
        display: block;
        scrollbar-width: none;
        padding: 0;
        
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .manifesto-slider::-webkit-scrollbar {
        display: none;
    }

    
    .slide {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        opacity: 1;
        display: none;
        pointer-events: none;
    }

    .slide.active {
        display: block;
        pointer-events: auto;
    }

    .slide-title {
        font-size: clamp(1.1rem, 4vw, 1.3rem) !important;
        margin-bottom: 0.4rem;
    }

    .manifesto-first-title {
        font-size: var(--global-title-size) !important;
    }

    .slide-text {
        font-size: clamp(0.78rem, 3.5vw, 0.9rem);
        line-height: 1.35;
        margin-bottom: 0;
    }

    .slide-logo {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        letter-spacing: 0.2em;
    }

    
    .slider-arrow {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.3rem;
        padding: 0.4rem 0.5rem;
        background-color: rgba(0, 0, 0, 0.25);
        border-radius: 50%;
        z-index: 50;
        opacity: 0.7;
    }

    body.light-theme .slider-arrow {
        background-color: rgba(255, 255, 255, 0.4);
    }

    .prev-arrow {
        left: 0.3rem;
    }

    .next-arrow {
        right: 0.3rem;
    }

    .global-enter-btn {
        font-size: 0.7rem;
        padding: 0.65rem 1.3rem;
        bottom: 5%;
    }
}


@media (min-width: 769px) and (max-width: 900px) {
    .manifesto-slider {
        height: 380px;
    }

    .slide-title {
        font-size: clamp(1.2rem, 1.8vw, 1.5rem) !important;
        margin-bottom: 0.6rem;
    }

    .manifesto-first-title {
        font-size: var(--global-title-size) !important;
    }

    .slide-text {
        font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    }

    .prev-arrow {
        left: -1rem;
    }

    .next-arrow {
        right: -1rem;
    }
}




body.light-theme .slide-title,
body.light-theme .slide-text,
body.light-theme .slide-logo {
    color: var(--text-color-light);
}

/* Old white color overrides for light-theme removed to allow solid black styling */


.manifesto-scroller {
    position: relative;
    width: 100%;
    height: 100svh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 10;
    padding-top: 0;

    
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0px,
            rgba(0, 0, 0, 0) var(--outer-m),
            rgba(0, 0, 0, 1) var(--manifesto-top),
            rgba(0, 0, 0, 1) 95%,
            rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0px,
            rgba(0, 0, 0, 0) var(--outer-m),
            rgba(0, 0, 0, 1) var(--manifesto-top),
            rgba(0, 0, 0, 1) 95%,
            rgba(0, 0, 0, 0) 100%);
    scrollbar-width: none;
}

.manifesto-scroller::-webkit-scrollbar {
    display: none;
}

.manifesto-block {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    text-align: left;
    
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding-top: 2svh;
    padding-bottom: 2svh;
    padding-left: var(--grid-edge) !important;
    padding-right: var(--grid-edge) !important;
}

.slide-title {
    width: 100%;
    margin-bottom: 0.3rem;
    font-size: clamp(1.3rem, 1.8vw, 1.7rem) !important;
    
    text-transform: none !important;
}

.manifesto-first-title {
    font-size: var(--global-title-size) !important;
}

.slide-content {
    width: 100%;
}




.manifesto-final-block {
    align-items: center !important;
    text-align: center !important;
}

@media (max-width: 768px) {
    .manifesto-block {
        padding: 4svh 5%;
    }

    .manifesto-final-block {
        padding-top: 1svh !important;
    }

    .manifesto-final-block .cta-button:not(.home-discover-btn) {
        margin-top: 0.5rem !important;
        
        padding: 0.8rem 2rem !important;
        
        font-size: 0.7rem !important;
        
    }
}


.reveal-on-scroll {
    opacity: 0;
    
    transform: translateY(40px);
    
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    
    transform: translateY(0);
    
}

.manifesto-scroll-hint {
    animation: bounce 2s infinite;
    opacity: 0.6;
    transition: opacity 0.3s;
}

body.light-theme .manifesto-scroll-hint {
    color: #fff;

}

.manifesto-scroll-hint:hover {
    opacity: 1;
}


body.dark-theme .reveal-on-scroll.visible {}









@media (max-width: 768px) {
    .manifesto-scroller {
        
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
    }
}


.manifesto-final-logo {
    filter: brightness(0) invert(1);
    width: 500px;
    
    display: block;
    margin: 0 auto;
    max-width: 80vw;
}

@media (max-width: 768px) {
    .manifesto-final-logo {
        width: 250px;
        
    }
}


.main-header {
    justify-content: flex-end !important;
    pointer-events: none;
}

.main-header .site-logo-link,
.main-header .skip-btn,
.main-header .main-nav,
.main-header .theme-btn,
.main-header .hamburger,
.main-header .manifesto-close-btn {
    pointer-events: auto;
}

.skip-btn {
    position: fixed;
    top: var(--outer-m);
    left: var(--outer-m);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    color: inherit;
    transition: opacity 0.3s ease;
    line-height: 1;
    z-index: 2000;
}

@media (max-width: 768px) {
    .skip-btn {
        top: 0;
        left: 16px;
        height: 60px;
        display: flex;
        align-items: center;
        margin: 0;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

@media (min-width: 1024px) {
    .container {
        padding-left: 100px;
        
    }
}

@media (min-width: 1600px) {
    .container {
        padding-left: 20px;
        
    }
}


:root {
    --outer-m: 32px;
    --inner-gap: 4px;
    --logo-w: 36px;
    --nav-h: 20px;
    --grid-edge: calc(var(--outer-m) * 2 + var(--logo-w));
    
    --manifesto-top: calc(var(--outer-m) + var(--nav-h) + var(--outer-m));
    
}

@media (max-width: 768px) {
    :root {
        --outer-m: 16px;
        --grid-edge: var(--outer-m);
        --manifesto-top: 100px;
        
    }
}

.main-header {
    padding: var(--outer-m) var(--grid-edge) 0 var(--outer-m) !important;
    height: calc(var(--outer-m) + var(--nav-h)) !important;
    align-items: flex-start !important;
    box-sizing: border-box !important;
    width: 100vw !important;
    max-width: 100% !important;
}


.main-nav ul {
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
}

.site-logo-link {
    top: var(--outer-m) !important;
    left: var(--outer-m) !important;
}

.site-logo:not(.logo-mobile) {
    width: var(--logo-w) !important;
    height: auto !important;
}

.work-section,
.services-section,
.legal-section-wrapper {
    padding: 0 !important;
    padding-top: calc(var(--outer-m) + var(--nav-h) + var(--outer-m)) !important;
    padding-bottom: var(--outer-m) !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.work-section .container,
.services-section .container,
.legal-section-wrapper .container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding-left: var(--grid-edge) !important;
    padding-right: var(--grid-edge) !important;
}

.work-section .projects-grid {
    gap: var(--inner-gap) !important;
    box-sizing: border-box !important;
}

@media (min-width: 900px) {
    .work-section .projects-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}


.disco-ball-container {
    margin-top: 4rem;
    margin-bottom: calc(4rem - var(--outer-m));
}

.disco-ball-wrap {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
}


@media (max-width: 768px) {
    .disco-ball-container {
        margin-top: 9vh !important;
        margin-bottom: 2vh !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .disco-ball-wrap {
        width: 180px;
        height: 180px;
        margin: 0 auto !important;
    }
}


.magazine-project-section {
    padding: 0 !important;
    padding-top: calc(var(--outer-m) + var(--nav-h) + var(--outer-m) + 1.5vh) !important;
    padding-bottom: var(--outer-m) !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.magazine-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding-left: var(--grid-edge) !important;
    padding-right: var(--grid-edge) !important;
}

@media (min-width: 1025px) {
    .magazine-container {
        max-width: 1400px !important;
        margin: 0 auto !important;
    }
}

.magazine-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--outer-m);
}

@media (min-width: 900px) {
    .magazine-grid {
        grid-template-columns: 35% 1fr;
        gap: 4vw;
        align-items: stretch;
    }
}

.magazine-text-col {
    display: flex;
    flex-direction: column;
}

.magazine-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.magazine-category {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    color: #888888;
    margin-bottom: 2rem;
}

.magazine-body {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    color: var(--text-color);
}

.magazine-body p {
    text-align: left !important;
    
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    
    margin-bottom: 1rem;
}

.magazine-media-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--inner-gap);
}

@media (min-width: 900px) {
    .magazine-media-col {
        grid-template-columns: 1fr 1.3fr;
    }
}

.magazine-images-mid {
    display: flex;
    flex-direction: column;
    gap: var(--inner-gap);
    height: 100%;
}

.magazine-images-right {
    height: 100%;
    min-height: 50vh;
}

.mag-img-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    width: 100%;
    
    min-height: 250px;
}

.mag-img-wrapper.tall {
    height: 100%;
    min-height: 100%;
}

.mag-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.mag-img-wrapper:hover img {
    filter: grayscale(0%);
}


.magazine-extra-media {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: var(--inner-gap);
    margin-top: var(--inner-gap);
}

.magazine-extra-media .mag-img-wrapper {
    aspect-ratio: 1200 / 1549;
    min-height: auto;
}

@media (max-width: 768px) {
    .main-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 60px !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }

    .site-logo-link {
        display: inline-block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        z-index: 2000;
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        transform: translateY(0);
        margin: 0 !important;
    }

    .site-logo-link.logo-scrolled-hidden {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(-10px) !important;
    }

    
    .site-logo-link .site-logo:not(.logo-mobile) {
        display: none !important;
    }

    
    .site-logo-link .logo-mobile {
        height: 18px !important;
        width: auto !important;
    }

    
    body.light-theme .site-logo-link .logo-mobile.logo-light {
        display: block !important;
    }

    body.light-theme .site-logo-link .logo-mobile.logo-dark {
        display: none !important;
    }

    body.dark-theme .site-logo-link .logo-mobile.logo-dark {
        display: block !important;
    }

    body.dark-theme .site-logo-link .logo-mobile.logo-light {
        display: none !important;
    }

    
    body.menu-body.light-theme .mobile-nav-links a {
        color: #1a1a1a !important;
    }

    body.menu-body.light-theme .mobile-theme-btn {
        color: #1a1a1a !important;
        border-color: #1a1a1a !important;
    }

    body.menu-body.menu-open.light-theme .hamburger span {
        background-color: #000000 !important;
    }

    
    .magazine-grid,
    .magazine-extra-media {
        display: none !important;
    }

    .magazine-mobile-grid {
        display: block !important;
        margin-top: 1.5rem !important;
    }

    .magazine-mobile-grid .mag-img-wrapper {
        width: 100% !important;
        aspect-ratio: 4 / 5 !important;
        height: auto !important;
        min-height: auto !important;
        margin: 2rem 0 !important;
    }

    .magazine-mobile-grid .magazine-body {
        margin-bottom: 2rem !important;
    }
}


.magazine-mobile-grid {
    display: none;
}

.mag-img-wrapper.natural-ratio {
    height: auto !important;
    min-height: auto !important;
    aspect-ratio: auto !important;
}

.mag-img-wrapper.natural-ratio img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .magazine-mobile-grid .mag-img-wrapper.natural-ratio {
        aspect-ratio: auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        margin: 2rem 0 !important;
    }
}

/* Homepage Overlay Layout & Customizations (Artistic Director Feedback) */
body.home-page {
    height: 100svh;
    overflow: hidden;
}

body.home-page main {
    height: 100%;
    position: relative;
}

body.home-page .hero {
    height: 100%;
    min-height: 100%;
}

body.home-page .site-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.home-discover-btn {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    text-transform: none !important;
    font-size: 1.4rem !important;
    letter-spacing: 0.05em !important;
    border: 3px solid currentColor !important;
    padding: 0.5rem 1.8rem !important;
}

body.home-page .home-discover-btn {
    margin-top: 72svh;
}

@media (max-width: 768px) {
    .home-discover-btn {
        font-size: 1.25rem !important;
        padding: 0.4rem 1.5rem !important;
    }
    body.home-page .home-discover-btn {
        margin-top: 55svh !important;
    }

    body.home-page .site-footer {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 0.8rem 5% !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.6rem 1.5rem !important;
        z-index: 10 !important;
    }

    body.home-page .site-footer .footer-left,
    body.home-page .site-footer .footer-right {
        display: flex !important;
        flex-direction: row !important;
        gap: 1.2rem !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
    }

    body.home-page .site-footer .footer-link,
    body.home-page .site-footer span {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }
}

/* Sizing for the new solid SVGs in the theme toggle buttons */
.theme-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

/* Manifesto Grid and Editorial Typography (Artistic Director Feedback) */
.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 6vw;
    align-items: start;
    padding-left: var(--grid-edge);
    padding-right: var(--grid-edge);
    padding-top: var(--manifesto-top);
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 4rem;
}

.manifesto-header-block {
    grid-column: 1 / 3;
    grid-row: 1;
}

.manifesto-col.col-1 {
    grid-column: 1;
    grid-row: 2;
}

.manifesto-col.col-2 {
    grid-column: 2;
    grid-row: 2;
}

.manifesto-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.manifesto-grid .manifesto-block {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.manifesto-scroller .slide-title {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: clamp(1.8rem, 2.4vw, 2.6rem) !important;
    line-height: 1.05 !important;
    margin-bottom: 0.8rem !important;
    text-transform: none !important;
    letter-spacing: -0.02em !important;
    max-width: 100% !important;
    width: 100% !important;
}

.manifesto-scroller .slide-text {
    font-family: var(--font-heading) !important; /* Europa Prima */
    font-weight: 700 !important; /* Bold */
    font-size: clamp(1.1rem, 1.35vw, 1.4rem) !important;
    line-height: 1.35 !important;
    text-align: left !important; /* Ragged right */
    opacity: 0.95 !important;
    text-transform: none !important;
    letter-spacing: -0.01em !important;
}

.manifesto-scroller .manifesto-first-title {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: clamp(3rem, 7.4vw, 15rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 0 !important; /* Managed by grid row gap */
    text-transform: none !important;
    max-width: 100% !important;
    width: 100% !important;
}

@media (max-width: 900px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: calc(var(--manifesto-top) - 2rem);
    }

    .manifesto-header-block,
    .manifesto-col {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }

    .manifesto-col {
        gap: 2rem !important;
    }

    .manifesto-scroller .manifesto-first-title {
        text-align: left !important;
        text-align-last: left !important;
        word-spacing: normal !important;
    }
}

/* Close button style inside the header for manifesto page */
.manifesto-close-btn {
    color: inherit;
    text-decoration: none;
    font-size: 1.5rem;
    line-height: 1;
    font-family: var(--font-body);
    font-weight: 300;
    transition: opacity 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.manifesto-close-btn:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .manifesto-page .main-header .header-right {
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        transform: translateY(0);
    }
    
    .manifesto-page .main-header .header-right.header-scrolled-hidden {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(-10px) !important;
    }
}

/* Services Page Layout & Typography (Artistic Director Feedback) */
.services-interactive {
    gap: 0.5rem !important; /* Tighten gaps between rows */
}

.service-row {
    padding-top: 0.6rem !important;
    padding-bottom: 0.6rem !important;
    border-bottom: 1px solid currentColor !important;
}

.services-interactive .service-num {
    font-family: var(--font-heading) !important; /* Europa Prima */
    font-weight: 700 !important;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem) !important; /* Match title size */
    display: inline-block !important;
    width: 2.2em !important; /* Fixed width to align titles vertically */
    margin-right: 0 !important; /* Spacing is handled by the fixed width */
    margin-top: 0 !important;
    opacity: 1 !important; /* Fully bold and visible */
    line-height: 1 !important;
}

.services-interactive .service-info h3 {
    font-family: var(--font-heading) !important; /* Europa Prima */
    font-weight: 700 !important;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem) !important; /* High-impact size */
    text-transform: none !important; /* Retain mixed case like "Strategy" */
    line-height: 1 !important;
}

.services-interactive .read-more {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    text-transform: none !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.05em !important;
    opacity: 0 !important;
    margin-top: 0.2rem !important;
}

.service-row:hover .read-more {
    opacity: 1 !important;
}

/* Align text baselines inside the footer-right column globally */
@media (min-width: 769px) {
    .footer-right {
        align-items: baseline !important;
    }
}

/* Manifesto Page Solid Background, High-Contrast Text, and Static layout (No animations) */
body.manifesto-page,
body.manifesto-page.dark-theme,
body.manifesto-page.dark-theme .manifesto-scroller {
    background-color: #000000 !important;
    background: #000000 !important;
}

body.manifesto-page.light-theme,
body.manifesto-page.light-theme .manifesto-scroller {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

body.manifesto-page .manifesto-bg,
body.manifesto-page .video-background,
body.manifesto-page #bg-video,
body.manifesto-page .video-overlay,
body.manifesto-page .manifesto-overlay {
    display: none !important;
}

body.manifesto-page .manifesto-scroller {
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* Dark theme colors: white text and borders */
body.manifesto-page,
body.manifesto-page.dark-theme,
body.manifesto-page.dark-theme .slide-title,
body.manifesto-page.dark-theme .slide-text,
body.manifesto-page.dark-theme .manifesto-first-title,
body.manifesto-page.dark-theme .manifesto-close-btn,
body.manifesto-page.dark-theme .theme-btn,
body.manifesto-page.dark-theme .site-footer,
body.manifesto-page.dark-theme .site-footer a,
body.manifesto-page.dark-theme .footer-link,
body.manifesto-page.dark-theme .site-footer span,
body.manifesto-page.dark-theme .footer-right span,
body.manifesto-page.dark-theme .cta-button,
body.manifesto-page.dark-theme .home-discover-btn {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

/* Light theme colors: black text and borders */
body.manifesto-page.light-theme,
body.manifesto-page.light-theme .slide-title,
body.manifesto-page.light-theme .slide-text,
body.manifesto-page.light-theme .manifesto-first-title,
body.manifesto-page.light-theme .manifesto-close-btn,
body.manifesto-page.light-theme .theme-btn,
body.manifesto-page.light-theme .site-footer,
body.manifesto-page.light-theme .site-footer a,
body.manifesto-page.light-theme .footer-link,
body.manifesto-page.light-theme .site-footer span,
body.manifesto-page.light-theme .footer-right span,
body.manifesto-page.light-theme .cta-button,
body.manifesto-page.light-theme .home-discover-btn {
    color: #000000 !important;
    border-color: #000000 !important;
}

body.manifesto-page .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

body.manifesto-page .fade-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

body.manifesto-page .manifesto-close-btn:hover,
body.manifesto-page .theme-btn:hover {
    opacity: 0.6 !important;
}



