:root {
    --bg-dark: #0a0a0a;
    --text-dark: #f0f0f0;
    --bg-light: #f5f5f5;
    --text-light: #121212;
    --accent: #FF5A00; /* Electric Orange */
    
    --font-massive: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: var(--font-body);
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Sections */
section {
    position: relative;
    padding: 10vh 5vw;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-light);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
    color: white;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

/* OVERHEAD LOGO LOCKUP STYLES */
.logo-focus {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white; /* Applies mix-blend-mode difference correctly */
}
.bracket {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 2.2rem;
    color: var(--accent);
    line-height: 0.8;
    transform: scaleY(1.3);
}
.focus-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
}
.focus-locked {
    font-family: var(--font-massive); /* Anton */
    font-size: 1.6rem;
    line-height: 0.85;
    letter-spacing: 2px;
}
.focus-media {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.55rem;
    letter-spacing: 6.5px;
    color: #ccc;
    padding-left: 3px;
    text-transform: uppercase;
}

.logo-accent {
    color: var(--accent);
}

.btn-talk {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
}

.btn-talk::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-talk:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Typography */
.massive-text {
    font-family: var(--font-massive);
    font-size: clamp(6rem, 15vw, 18rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

.text-accent {
    color: var(--accent);
}

.section-number {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.5rem;
    margin-bottom: 4rem;
}

.oversized-sub {
    font-family: var(--font-massive);
    font-size: clamp(3rem, 6vw, 6rem);
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 40vw;
    height: 60vh;
    z-index: 0;
    opacity: 0.8;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

.hero h1 {
    position: relative;
    z-index: 2;
}

/* Editorial Layout */
.content-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.text-block {
    flex: 1;
    max-width: 600px;
}

.text-block p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
}

.image-offset {
    flex: 1;
    position: relative;
    margin-top: -10vh;
}

.inline-img {
    width: 100%;
    max-height: 80vh;
    object-fit: cover;
    filter: grayscale(80%);
}

/* Witty Section */
.witty {
    text-align: center;
    padding: 20vh 5vw;
}

.witty-text {
    font-family: var(--font-massive);
    font-size: clamp(3rem, 8vw, 8rem);
    color: var(--text-dark);
    line-height: 1;
}

.witty-text span {
    color: var(--text-dark);
}
.witty .text-accent {
    color: var(--accent);
}

/* Services */
.service-list {
    list-style: none;
}

.service-list li {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.service-list li:hover {
    padding-left: 2rem;
}

.service-title {
    font-family: var(--font-massive);
    font-size: clamp(3rem, 6vw, 8rem);
    line-height: 1;
}

.service-list li:hover .service-title {
    color: var(--accent);
}

.learn-more {
    font-family: var(--font-body);
    text-decoration: none;
    color: inherit;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list li:hover .learn-more {
    color: var(--accent);
}

/* Footer */
footer {
    padding: 10vh 5vw;
    text-align: center;
}

.footer-email {
    display: block;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    margin-top: 2rem;
    font-weight: 300;
}

.footer-email:hover {
    color: var(--accent);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-up-delay {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Portfolio Section */
.center-text {
    text-align: center;
}
.portfolio-link {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
}
.view-work-text {
    transition: color 0.4s ease;
    font-size: clamp(3rem, 8vw, 12rem);
}
.portfolio-link:hover .view-work-text {
    color: var(--accent);
}
.portfolio-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: #888;
    margin-top: 1rem;
}

/* Cinematic Contact Section */
.contact-cinematic {
    background-color: #080808;
    color: #f0f0f0;
    padding: 12vh 5vw 8vh;
    text-align: center;
}

.cinematic-text {
    margin-bottom: 5vh;
}

/* Contact heading — elegant two-line display */
.contact-heading {
    font-family: var(--font-massive);
    font-size: clamp(4rem, 10vw, 13rem);
    line-height: 0.88;
    text-transform: uppercase;
    margin: 0 auto;
    color: #f0f0f0;
}

.scene-embed {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    box-shadow: none;
    aspect-ratio: 16 / 9;
}

/* Dark gradient fade on all four edges — makes video vanish into background */
.scene-embed::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, #080808 0%, transparent 18%, transparent 82%, #080808 100%),
        linear-gradient(to right,  #080808 0%, transparent 18%, transparent 82%, #080808 100%);
    pointer-events: none;
    z-index: 2;
}

.scene-embed video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    outline: none;
}

/* Sound toggle button */
.sound-toggle {
    position: absolute;
    bottom: 16px;
    right: 20px;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(201,168,76,0.4);
    color: #c9a84c;
    font-size: 1.1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(4px);
}
.sound-toggle:hover {
    background: rgba(201,168,76,0.2);
    border-color: #c9a84c;
}


.contact-details {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* On dark cinematic section the email link should be light */
.text-dark-override {
    color: #f0f0f0 !important;
    font-size: 1.4rem;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.text-dark-override:hover {
    color: var(--accent) !important;
}

/* footer-email fallback */
.footer-email {
    display: block;
    font-size: 1.4rem;
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}
.footer-email:hover {
    color: var(--accent);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3.5rem;
    background-color: transparent;
    border: 1px solid rgba(201, 168, 76, 0.6);
    color: #c9a84c;
    text-decoration: none;
    font-family: var(--font-massive);
    font-size: 1.6rem;
    letter-spacing: 3px;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .content-split {
        flex-direction: column;
    }
    .hero-image-wrapper {
        width: 80vw;
        height: 50vh;
        right: -10%;
    }
    .service-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .scene-embed {
        aspect-ratio: auto;
        height: 55vw;
        min-height: 260px;
    }
}

/* Remove underlines from all links */
a {
    text-decoration: none !important;
}
