/* Reset & Base */
:root {
    --color-bg: #F2F0EB;
    --color-text: #121212;
    --color-yellow: #E2FF00;
    --color-pink: #FF00FF;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    cursor: none; /* Custom cursor */
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none; /* Custom cursor handles this */
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.grid { display: grid; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--color-pink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor.hovered {
    width: 60px;
    height: 60px;
    background-color: var(--color-yellow);
    mix-blend-mode: normal;
    opacity: 0.8;
}

@media (hover: none) and (pointer: coarse) {
    .cursor {
        display: none;
    }
    html, a {
        cursor: auto;
    }
}

/* Noise Overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background: var(--color-bg);
    border-bottom: 2px solid var(--color-text);
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-display);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    position: relative;
    color: var(--color-text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-pink);
    transition: width 0.3s;
}
/* ... */
.read-more-btn {
    background: transparent;
    border: 2px solid var(--color-yellow);
    color: var(--color-yellow);
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.2s;
    display: inline-block;
}

.read-more-btn:hover {
    background: var(--color-yellow);
    color: var(--color-text);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 12rem; /* Increased from 4rem to clear fixed header */
    padding-bottom: 4rem;
    position: relative;
    overflow: visible;
    width: 100%;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero h1 {
    font-size: 12vw;
    line-height: 0.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.hero h1 .stroke {
    -webkit-text-stroke: 2px var(--color-text);
    color: transparent;
    transition: color 0.3s;
}

.hero h1 .stroke:hover {
    color: var(--color-yellow);
}

.hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 3rem;
    font-family: var(--font-display);
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-text);
    color: var(--color-bg);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    border: 2px solid var(--color-text);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--color-yellow);
    color: var(--color-text);
    box-shadow: 8px 8px 0 var(--color-pink);
    transform: translate(-4px, -4px);
}

/* YouTube Certified Badge */
.youtube-certified-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    background: white;
    border: 2px solid var(--color-text);
    padding: 0.5rem 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-text);
    text-transform: none;
    letter-spacing: -0.02em;
    transform: rotate(-2deg);
    /* box-shadow removed for non-clickable look */
    cursor: default;
}

.youtube-certified-badge:hover {
    /* No hover effects */
    transform: rotate(-2deg);
}

.youtube-icon {
    width: 32px;
    height: 24px;
    fill: #FF0000;
}

/* Marquee */
.marquee-container {
    background-color: var(--color-yellow);
    border-top: 4px solid var(--color-text);
    border-bottom: 4px solid var(--color-text);
    padding: 1rem 0;
    overflow: hidden;
    transform: rotate(-2deg) scale(1.05);
    margin: 4rem 0;
    display: flex;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    animation: marquee 45s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-text);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.marquee-item::after {
    content: '•';
    margin: 0 2rem;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Work Examples */
.work-examples-container {
    display: flex;
    overflow-x: auto;
    gap: 2.5rem;
    padding: 1rem;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Brutalist Scrollbar */
.work-examples-container::-webkit-scrollbar {
    height: 12px;
}
.work-examples-container::-webkit-scrollbar-track {
    background: var(--color-bg);
    border: 2px solid var(--color-text);
}
.work-examples-container::-webkit-scrollbar-thumb {
    background: var(--color-text);
    border: 2px solid var(--color-bg);
}

.work-example-card {
    flex: 0 0 75%;
    max-width: 240px;
    scroll-snap-align: start;
    border: 3px solid var(--color-text);
    background: white;
    transition: all 0.3s;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    filter: grayscale(100%);
    opacity: 0.6;
}

@media (min-width: 768px) {
    .work-example-card {
        flex: 0 0 35%;
    }
}

@media (min-width: 1024px) {
    .work-example-card {
        flex: 0 0 18%;
    }
}

.work-example-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0 var(--color-pink);
    z-index: 10;
    filter: grayscale(0%);
    opacity: 1;
}

.work-example-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-bottom: 3px solid var(--color-text);
}

.work-example-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.work-example-card:hover .work-example-thumbnail img {
    transform: scale(1.05);
}

.work-example-info {
    padding: 0.75rem;
    background: white;
}

.work-example-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.work-example-sub {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--color-bg);
    border: 3px solid var(--color-text);
    padding: 1.5rem;
    max-width: 400px;
    z-index: 9999;
    box-shadow: 8px 8px 0 var(--color-text);
    display: none; /* Hidden by default, shown via JS */
    font-family: var(--font-body);
}

.cookie-banner.active {
    display: block;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-text);
    background: transparent;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.8rem;
}

.cookie-btn.accept {
    background: var(--color-text);
    color: var(--color-bg);
}

.cookie-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--color-pink);
}

.cookie-btn.accept:hover {
    background: var(--color-yellow);
    color: var(--color-text);
}

/* ... existing styles ... */

/* Playbook Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.9);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--color-bg);
    border: 4px solid var(--color-text);
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 20px 20px 0 var(--color-pink);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: sticky;
    top: 1rem;
    float: right;
    margin-top: -1.5rem;
    margin-right: -1.5rem;
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    transition: all 0.2s;
    z-index: 100;
}

.modal-close:hover {
    background: var(--color-pink);
    color: white;
}

.modal-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    line-height: 1;
}

.modal-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.read-more-btn {
    background: transparent;
    border: 2px solid var(--color-yellow);
    color: var(--color-yellow);
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.2s;
    display: inline-block;
}

.read-more-btn:hover {
    background: var(--color-yellow);
    color: var(--color-text);
}

.project-marquee-item:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 0 var(--color-pink);
    z-index: 10;
}

.project-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-bottom: 4px solid var(--color-text);
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-marquee-item:hover .project-thumbnail img {
    transform: scale(1.05);
}

.project-marquee-info {
    padding: 1rem;
    background: white;
}

.project-marquee-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.project-marquee-sub {
    font-size: 0.9rem;
    opacity: 0.7;
}

@keyframes project-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Work Section */
.section {
    padding: 8rem 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 4px solid var(--color-text);
    padding-bottom: 2rem;
    gap: 2rem;
}

.section-title {
    font-size: 6rem;
    line-height: 0.9;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
}

.project-card {
    border: 4px solid var(--color-text);
    background-color: white;
    transition: transform 0.3s;
    position: relative;
}

.project-card:hover {
    transform: translate(-8px, -8px);
    box-shadow: 16px 16px 0 var(--color-pink);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    background: black;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.project-card:hover .video-container iframe {
    filter: grayscale(0%);
}

.project-info {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 4px solid var(--color-text);
}

.project-client {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.project-title {
    font-family: var(--font-display);
    text-transform: uppercase;
    opacity: 0.7;
}

/* Philosophy Section */
.philosophy {
    background-color: var(--color-text);
    color: var(--color-bg);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 10rem 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.philosophy-item {
    border-left: 2px solid var(--color-yellow);
    padding-left: 2rem;
}

.philosophy-item h3 {
    font-size: 2rem;
    color: var(--color-yellow);
    margin-bottom: 1rem;
}

.philosophy-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.team-card {
    border: 3px solid var(--color-text);
    background: white;
    padding: 1.5rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    background-color: var(--color-yellow);
    box-shadow: 8px 8px 0 var(--color-text);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    background-color: #ddd;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 2px solid var(--color-text);
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.team-card:hover .team-photo img {
    filter: grayscale(0%);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-role {
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-pink);
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
    flex-grow: 1;
}

/* Contact Section */
.contact {
    background-color: var(--color-yellow);
    text-align: center;
    padding: 10rem 0;
    position: relative;
}

.contact h2 {
    font-size: 8vw;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.contact p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Client Links */
.client-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    border: 3px solid var(--color-text);
    background: white;
    transition: all 0.3s;
    filter: grayscale(0%);
    opacity: 1;
    height: 120px;
    width: 260px;
}

.client-link:hover {
    background: var(--color-yellow);
    box-shadow: 8px 8px 0 var(--color-text);
    transform: translate(-4px, -4px);
}

.client-link img, .client-link svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 3px solid var(--color-text);
    background: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus {
    box-shadow: 6px 6px 0 var(--color-yellow);
    transform: translate(-3px, -3px);
}

.form-input::placeholder {
    color: #888;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}

/* Footer */
footer {
    background-color: var(--color-text);
    color: var(--color-bg);
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 15vw; }
    .section-title { font-size: 3.5rem; }
    .projects-grid { grid-template-columns: 1fr; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .contact h2 { font-size: 15vw; }
    .footer-content { flex-direction: column; gap: 2rem; text-align: center; }
    .modal-content { padding: 1.5rem; }
    .modal-close { margin-top: -0.5rem; margin-right: -0.5rem; }
}
