:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-muted: #888888;
    --accent-color: #ffffff;
    --color-yellow: #FCB900;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --spacing-unit: 2rem;
    /* Increased base spacing */
    --section-padding: 8rem;
    /* Large negative space */
}

/* Light Theme Overrides */
body.light-theme {
    --bg-color: #f4f4f4;
    /* Slightly off-white like reference */
    --text-color: #111111;
    --text-muted: #555555;
    --accent-color: #000000;
}

/* Light Theme Specifics for Workshop Page */
body.light-theme .workshop-container {
    background: var(--bg-color);
    /* Override hardcoded #000 */
}

body.light-theme .curriculum-card-layout .card-media {
    background: #f0f0f0;
}

body.light-theme .card-title {
    color: var(--text-color);
}

body.light-theme .card-desc {
    color: var(--text-muted);
}

body.light-theme .btn-case-link {
    color: var(--text-color);
    border-color: rgba(0, 0, 0, 0.3);
}

body.light-theme .btn-case-link:hover {
    color: #666;
    border-color: #000;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 3rem;
    /* Align with Nav padding-top */
    right: 5vw;
    /* Align with Container padding */
    z-index: 2000;
    /* Above nav */
    background: transparent;
    border: 2px solid var(--text-color);
    /* Thicker border */
    color: var(--text-color);
    width: 44px;
    /* Slightly larger */
    height: 44px;
    border-radius: 0;
    /* Square geometric look */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    /* Bold icon */
    transition: all 0.2s ease;
    opacity: 0.9;
}

.theme-toggle:hover {
    opacity: 1;
    transform: none;
    /* No rotation, just crisp change */
    background: var(--text-color);
    color: var(--bg-color);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    /* Switch to Sans */
    font-weight: 700;
    text-transform: uppercase;
    /* Reference style */
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.container {
    width: 90%;
    max-width: 1600px;
    /* Wider container */
    margin: 0 auto;
    padding: 0 5vw;
    /* More side gutters */
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-xs {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

/* Navigation */
.main-nav {
    position: fixed;
    /* Fixed to viewport */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    /* Reduced padding */
    /* Extend gradient area */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

/* Re-enable pointer events for links */
.main-nav a {
    pointer-events: auto;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.nav-link.active {
    color: white;
}

/* Sections */
section {
    padding: 6rem 0;
}

/* Footer (Simulated as bottom of index for now) */
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url('hero_background_final.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /* background-attachment: fixed; */
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15rem;
    /* Large blend area */
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
    opacity: 0.9;
}

.play-button {
    width: 60px;
    height: 60px;
    border: 1px solid #FFFFFF;
    /* Solid white border */
    border-radius: 50%;
    /* Keep circular */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: none;
}

.play-button:hover {
    transform: scale(1.1);
    /* background: rgba(255, 255, 255, 0.1); */
    /* Removed */
}

.location-tag {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Strategy Section (Cinematic Redesign) */
.strategy-section {
    background-color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 0;
}

.strategy-container {
    display: flex;
    flex-direction: column;
    width: 95%;
    max-width: 1600px;
    height: auto;
    gap: 2rem;
    position: relative;
}

/* 1. Top Navigation */
.strategy-top-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    padding-bottom: 3rem;
    z-index: 10;
}

.nav-dots {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    /* Horizontal */
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

.nav-item {
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    transition: color 0.3s, transform 0.3s;
    text-align: center;
    position: relative;
    padding: 1rem;
}

.nav-item:hover {
    color: #fff;
}

.nav-item.active {
    color: #fff;
    transform: scale(1.1);
}

/* Progress Line (Horizontal) */
.progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #333;
    z-index: 1;
}

.scroll-indicator-line {
    position: absolute;
    top: -1px;
    /* Align with track */
    left: var(--progress, 0%);
    /* JS updates this variables */
    width: 33.33%;
    /* 100% / 3 steps */
    height: 3px;
    background: #fff;
    transition: left 0.5s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* 2. Visuals (Cinematic) */
.strategy-visuals {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    /* Cinematic Ratio */
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
}

.strategy-visuals::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10rem;
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
    z-index: 2;
}

.visual-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    /* Slight zoom out effect */
    transition: all 0.8s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.strategy-step-label {
    font-size: clamp(4rem, 12vw, 15rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    /* Very subtle bold text */
    text-transform: uppercase;
    line-height: 0.8;
    letter-spacing: -10px;
    pointer-events: none;
    user-select: none;
    transition: color 0.8s ease;
}

.visual-item.active .strategy-step-label {
    color: rgba(255, 255, 255, 0.15);
    /* More visible when active */
}

.strategy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the area */
    opacity: 0.6;
    /* Darken slightly for text overlay */
    transition: opacity 0.5s;
}

/* 3. Content (Overlay) */
.strategy-content-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem;
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through to image/nav */
}

.strategy-content {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.strategy-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    /* Allow selecting text */
}

.strategy-title {
    font-size: 4rem;
    /* Big Headline */
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.strategy-desc {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.strategy-list {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.list-item .dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin-top: 6px;
    box-shadow: 0 0 5px #fff;
}

.list-item p {
    font-size: 0.95rem;
    color: #ccc;
}

.list-item strong {
    color: #fff;
}

/* Scroll Indicator (Reused) */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 1px;
}

/* Mobile Responsive Strategy Section */
@media (max-width: 768px) {
    .strategy-section {
        height: auto;
        min-height: auto;
        padding: 4rem 0;
    }

    .strategy-container {
        gap: 1rem;
        width: 100%;
    }

    /* Keep Nav Horizontal but smaller */
    .strategy-top-nav {
        padding-bottom: 1.5rem;
        padding: 0 1rem 1.5rem 1rem;
    }

    .nav-item {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .strategy-visuals {
        aspect-ratio: 4/5;
        max-height: 60vh;
    }

    .strategy-content-wrapper {
        position: relative;
        /* Static position on mobile */
        padding: 2rem 1.5rem;
        width: 100%;
        background: #000;
        margin-top: -50px;
        /* Overlap image slightly */
        z-index: 10;
        background: linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
    }

    .strategy-content {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none !important;
        opacity: 0;
        display: none;
    }

    .strategy-content.active {
        opacity: 1;
        display: block;
    }

    .strategy-title {
        font-size: 2.5rem;
    }

    .strategy-desc {
        max-width: 100%;
        font-size: 1rem;
    }
}

/* Works Page Styles */

.work-intro {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
    max-width: 100%;
    /* Allow full width background */
    margin: 0 auto;
    width: 100%;

    /* New UI Styles */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%), url('work_hero_bg_final.jpg');
    background-size: cover;
    background-position: center;
    align-items: flex-end;
    /* Align text to right like reference */
    text-align: right;
    position: relative;
    /* Ensure for pseudo */
}

.work-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15rem;
    background: linear-gradient(to bottom, transparent, #050505);
    /* Fade to page bg */
    pointer-events: none;
    z-index: 1;
}

.work-intro-content {
    max-width: 600px;
    margin-right: 10%;
    /* Spacing from right edge */
    padding: 2rem;
}

.studio-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 2rem;
    display: block;
}

.work-intro h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.work-intro p {
    font-size: 1rem;
    line-height: 1.6;
    color: #aaa;
    max-width: 600px;
}

.btn-designops {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-yellow);
    /* Yellow accent */
    color: #000;
    /* Black text for contrast */
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 9999px;
    /* Pill shape */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-designops:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 185, 0, 0.4);
    /* Yellow glow */
}

/* Case Study Page (Typography Scale UI) */
.case-study-container {
    min-height: 100vh;
    padding: 100px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050505;
    /* Deep dark background */
}

.scale-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 1400px;
}

.scale-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle separator */
    transition: background-color 0.3s;
}

.scale-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.scale-link {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    /* Align by text baseline */
    padding: 1.5rem 0;
    text-decoration: none;
    color: #fff;
    width: 100%;
    transition: transform 0.3s, padding 0.3s;
}

.scale-item:hover .scale-link {
    transform: translateX(20px);
    /* Animate on hover */
    padding-left: 20px;
    /* Enhanced 'move' effect */
}

.scale-text {
    font-family: var(--font-sans);
    font-weight: 500;
    line-height: 1.1;
    /* Use the inline variable or fallback */
    font-size: var(--font-size, 24px);
    display: block;
}

/* Responsive Font Sizes Adjustment for Mobile */
@media (max-width: 1024px) {
    .scale-item[style*="180px"] .scale-text {
        font-size: 100px !important;
    }

    .scale-item[style*="120px"] .scale-text {
        font-size: 70px !important;
    }

    .scale-item[style*="80px"] .scale-text {
        font-size: 50px !important;
    }
}

@media (max-width: 768px) {
    .scale-item[style*="180px"] .scale-text {
        font-size: 60px !important;
    }

    .scale-item[style*="120px"] .scale-text {
        font-size: 45px !important;
    }

    .scale-item[style*="80px"] .scale-text {
        font-size: 35px !important;
    }

    .scale-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .scale-meta {
        font-size: 0.8rem;
        opacity: 0.6;
    }
}

.scale-meta {
    font-family: var(--font-mono, monospace);
    font-size: 14px;
    color: #666;
    margin-left: 2rem;
    /* Px on the right side */
}

/* Case Studies Slider */
.case-studies-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    width: 100%;
    /* overflow-x: hidden; removed to allow full scroll */
}

.case-studies-header {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
}

.slider-controls {
    display: flex;
    gap: 1rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #333;
    background: #000;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: #fff;
    color: #000;
}

.case-studies-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 5%;
    /* Padding creates visual inset */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.case-studies-slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome */
}

.case-study-card {
    flex: 0 0 80vw;
    /* Occupies 80% of screen width on mobile, adjusted for desktop */
    max-width: 900px;
    background: #0f0f0f;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    scroll-snap-align: center;
    border: 1px solid #222;
    transition: transform 0.3s;
}

.case-study-card:hover {
    border-color: #333;
}

.card-visual {
    width: 45%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    position: relative;
    overflow: hidden;
    background: #000;
    /* Default background */
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.8;
}

.case-study-card:hover .card-visual img {
    transform: scale(1.1);
    opacity: 1;
}

.visual-label {
    position: absolute;
    z-index: 2;
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

/* Fallback/Overlay styles */
.fallback-icon {
    position: absolute;
    z-index: 1;
    opacity: 0.5;
}

.card-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

.card-desc {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 2rem;
}

.btn-pill {
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    background: #222;
    color: white;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-pill:hover {
    background: #fff;
    color: #000;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .case-study-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        flex: 0 0 85vw;
    }

    .card-visual {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
        aspect-ratio: 16/9;
    }

    .card-details {
        padding-right: 0;
    }

    .section-title {
        font-size: 2rem;
    }
}


/* Client List Section (Image 1) */
.client-list-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 2rem;
    text-align: center;
}

.client-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.3s;
}

.client-item:hover {
    opacity: 0.7;
}

.client-plus {
    color: #555;
    font-size: 1.5rem;
}

/* Responsive Works */
@media (max-width: 768px) {
    .work-intro h1 {
        font-size: 2rem;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}


/* Reach Out Section - Massive Redesign */
.contact-section {
    min-height: 100vh;
    /* Takes up most of the screen */
    background-color: #0a0a0a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    z-index: 10;
    box-shadow: 0 -50px 50px rgba(0, 0, 0, 0.5);
    /* Shadow to emphasize the overlay */
}

.contact-container {
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    position: relative;
}

/* Progress Bar */
.contact-progress {
    position: absolute;
    top: -50px;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: #222;
}

.progress-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.5s ease;
}

/* Form Steps */
.form-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-step label {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    /* Massive label */
    margin-bottom: 2rem;
    line-height: 1.2;
}

.form-step input,
.form-step textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    font-size: 2rem;
    font-family: var(--font-sans);
    color: #888;
    padding: 1rem 0;
    transition: border-color 0.3s;
    resize: none;
}

.form-step input:focus,
.form-step textarea:focus {
    outline: none;
    border-color: #fff;
    color: #fff;
}

.form-step input::placeholder,
.form-step textarea::placeholder {
    color: #333;
}

/* Interaction Buttons */
.btn-next,
.btn-submit-massive,
.btn-back {
    margin-top: 3rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    font-family: var(--font-sans);
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s;
}

.btn-next:hover,
.btn-submit-massive:hover,
.btn-back:hover {
    opacity: 0.7;
}

.btn-next .arrow {
    margin-left: 10px;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.btn-next:hover .arrow {
    transform: translateX(5px);
}

.btn-back {
    margin-left: 2rem;
    color: #555;
    font-size: 1rem;
}

.btn-submit-massive {
    background: #fff;
    color: #000;
    padding: 1rem 3rem;
    border-radius: 50px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .form-step label {
        font-size: 1.8rem;
    }

    .form-step input {
        font-size: 1.5rem;
    }
}


/* ========================================= */
/* Workshop Page Styles - Dark Theme & FAQ UI */
/* ========================================= */

.workshop-page {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Custom Workshop Navigation */
.workshop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 80px;
    /* Below Main Nav */
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 100;
    width: 100%;
    margin-top: 0;
    border-bottom: 1px solid #222;
}

.nav-items-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    padding-right: 2rem;
    align-items: center;
}

.nav-items-scroll::-webkit-scrollbar {
    display: none;
}

.workshop-nav .nav-item {
    color: #888;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: capitalize;
}

.workshop-nav .nav-item:hover {
    color: #FFFDD0;
    /* Cream on hover too? Or keep white? User said "when clicked" -> active. Let's keep hover white or match active. */
}

.workshop-nav .nav-item.active {
    color: #FFFDD0;
    /* White Cream */
    transform: none;
    /* Remove scale effect */
    font-weight: 600;
}

/* More Button & Dropdown */
.nav-more-container {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-btn-more {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #333;
    background: transparent;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.nav-btn-more:hover,
.nav-btn-more.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 1rem;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1rem;
    min-width: 250px;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    color: #aaa;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
    background: #222;
    color: #fff;
}


/* Workshop Content Container */
.workshop-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Title | Accordion */
    gap: 4rem;
    width: 90%;
    max-width: 1400px;
    margin: 4rem auto;
    padding-bottom: 6rem;
    align-items: flex-start;
}

.workshop-header {
    position: sticky;
    top: 150px;
    /* Sticks while scrolling questions */
}

.workshop-header .page-title {
    font-size: 4rem;
    line-height: 1.1;
    color: #fff;
    font-family: var(--font-sans);
    /* Clean sans-serif per reference */
    font-weight: 400;
}


/* Accordion List */
.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.accordion-item {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.3s;
}

.accordion-item:hover {
    border-color: #333;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: transparent;
}

.accordion-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.accordion-toggle {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
    /* Turns + into x */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
    /* Initial padding 0 top/bottom */
}

.accordion-item.active .accordion-content {
    padding: 0 2rem 2rem 2rem;
    /* Add bottom padding when open */
    max-height: 500px;
    /* Approximate max height */
}

.accordion-content p {
    color: #aaa;
    line-height: 1.6;
    font-size: 1rem;
}


/* Mobile for Workshop */
@media (max-width: 900px) {
    .workshop-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 2rem;
    }

    .workshop-header {
        position: static;
    }

    .workshop-header .page-title {
        font-size: 3rem;
    }
}

/* AI Search Component Styles - Light Geometric Wireframe */
.ai-search-container {
    background: #ffffff;
    border-radius: 0;
    padding: 1.5rem;
    width: 800px;
    max-width: 95%;
    margin: 3rem auto 0 auto;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #000;
    position: relative;
}

/* Decoration for Search */
.ai-search-container::before {
    content: 'INPUT-CMD';
    position: absolute;
    top: -10px;
    left: 1rem;
    background: white;
    padding: 0 0.5rem;
    font-size: 0.7rem;
    font-family: 'Courier New', monospace;
    color: #000;
}

.ai-search-container:focus-within {
    border-color: #000;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
    /* Hard shadow on focus */
}

.ai-input-row {
    width: 100%;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 0.5rem;
}

.ai-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #000;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    padding: 0.5rem 0;
}

.ai-search-input::placeholder {
    color: #999;
    font-style: italic;
}

.ai-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-plus-btn {
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: transparent;
    border: 1px solid #000;
    color: #000;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.ai-plus-btn:hover {
    background: #000;
    color: #fff;
}

.ai-right-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ai-location-pill {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: 'Courier New', monospace;
}

.ai-location-pill:hover {
    background: #f0f0f0;
}

.ai-send-btn {
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: #000;
    border: 1px solid #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ai-send-btn:hover {
    background: white;
    color: black;
}

/* Mobile responsive tweak */
@media (max-width: 600px) {
    .ai-search-container {
        width: 100%;
        padding: 1rem;
    }

    .ai-location-pill span {
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Hero Text Stacking fix if needed, though mostly handled by flex wrap */
    .vuba-hero-content h1 {
        font-size: 2.5rem;
        /* Ensure readable on mobile */
    }
}

/* Promo Section Styles */
.promo-section {
    background-color: #fbf9f4;
    /* Cream background */
    padding: 6rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.promo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1400px;
    gap: 4rem;
}

.promo-content {
    flex: 1;
    position: relative;
    padding-left: 2rem;
}

.promo-content h2 {
    font-family: 'Oswald', 'Impact', sans-serif;
    /* Condensed bold font */
    font-size: 6rem;
    line-height: 0.9;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -2px;
}

.promo-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 500;
}

.promo-content small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 4rem;
}

.terms-text {
    position: absolute;
    top: -2rem;
    font-size: 0.7rem;
    color: #999;
}

/* Badge Style */
.promo-badge {
    display: inline-flex;
    align-items: center;
    background: #333;
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    background: #da7756;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: serif;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.offer-text {
    font-size: 0.75rem;
    font-weight: bold;
}

.site-text {
    font-size: 0.65rem;
    color: #ccc;
}

.badge-btn {
    background: #111;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #444;
}

.promo-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.promo-model-img {
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .promo-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .promo-content {
        padding-left: 0;
    }

    .promo-content h2 {
        font-size: 3.5rem;
    }

    .promo-badge {
        display: none;
        /* Often hidden on mobile or adapted */
    }
}

/* Discovery Section Styles - Light Geometric Corporate */
.discovery-section {
    background-color: #ffffff;
    padding: 8rem 0;
    width: 100%;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    position: relative;
}

/* Technical Grid Lines Background */
.discovery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.discovery-section::after {
    content: 'SEC-04 // DISCOVERY';
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #000;
    letter-spacing: 2px;
}

.discovery-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.discovery-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
    border-bottom: 1px solid #000;
    padding-bottom: 2rem;
}

.discovery-filters {
    display: flex;
    gap: 0;
    /* Joined pills */
}

.filter-pill {
    padding: 0.8rem 1.5rem;
    border: 1px solid #000;
    border-right: none;
    background: transparent;
    color: #000;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0;
}

.filter-pill:last-child {
    border-right: 1px solid #000;
}

.filter-pill:hover {
    background: #f0f0f0;
}

.filter-pill.active {
    background: #000;
    color: white;
}

.view-all-link {
    font-size: 0.8rem;
    color: #000;
    text-transform: uppercase;
    text-decoration: underline;
    font-family: 'Courier New', monospace;
}

.discovery-title {
    font-size: 3rem;
    font-family: 'Oswald', sans-serif;
    /* Strong geometric font */
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0;
    line-height: 1;
}

.discovery-subtitle {
    font-size: 0.9rem;
    color: #555;
    font-family: 'Courier New', monospace;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Grid Layout */
.discovery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    /* Remove gap for contiguous border look */
    border-left: 1px solid #000;
    border-top: 1px solid #000;
}

/* Card Styles - Technical/Wireframe */
.show-card {
    background: white;
    border: 1px solid #000;
    border-left: none;
    /* Prevent double borders */
    border-top: none;
    border-radius: 0;
    overflow: visible;
    /* Allow measurement markers to pop out if needed */
    transition: all 0.3s ease;
    position: relative;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-width: 250px;
}

.show-card:hover {
    background: #000;
    color: white;
    transform: none;
    /* No movement, just color invert */
    box-shadow: none;
}

.show-card:hover .card-title,
.show-card:hover .card-meta,
.show-card:hover .card-host {
    color: white;
}

.card-image {
    height: 200px;
    width: 100%;
    margin-bottom: 1.5rem;
    border: 1px solid #000;
    position: relative;
    filter: grayscale(100%);
    /* B&W Image initially */
    transition: filter 0.3s ease;
}

.show-card:hover .card-image {
    filter: grayscale(0%);
    border-color: white;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Measurement marker decoration */
.card-image::after {
    content: 'IMG-01';
    position: absolute;
    bottom: -15px;
    right: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.6rem;
    color: #000;
}

.show-card:hover .card-image::after {
    color: white;
}

.card-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    color: white;
    padding: 0.2rem 0.5rem;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    border-radius: 0;
}

.show-card:hover .card-badge {
    background: white;
    color: black;
}

.card-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.75rem;
    color: #000;
    font-family: 'Courier New', monospace;
    margin-bottom: 1.5rem;
    border-left: 2px solid #000;
    padding-left: 0.5rem;
}

.show-card:hover .card-meta {
    border-left-color: white;
}

.card-host {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: #000;
    margin-top: auto;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.host-avatar {
    width: 24px;
    height: 24px;
    border: 1px solid #000;
    border-radius: 0;
    /* Square avatar */
    background: transparent;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.show-card:hover .host-avatar {
    border-color: white;
    color: white;
}

/* Coordinate decoration on card */
.show-card::before {
    content: '+';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1rem;
    color: #000;
    line-height: 0.5;
}

.show-card:hover::before {
    color: white;
}

@media (max-width: 1024px) {
    .discovery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .discovery-grid {
        grid-template-columns: 1fr;
        border-right: 1px solid #000;
        /* Close the box on mobile stack */
    }

    .show-card {
        border-right: none;
        /* Mobile stack handles borders differently often, but grid handles it */
    }
}

/* Featured Work Section (Motto Style) */
.featured-work-section {
    background-color: #000;
    /* Dark Theme */
    color: #fff;
    padding: 0 5%;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    border-top: 1px solid #333;
}

.featured-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6rem;
    border-bottom: 1px solid #333;
    /* Thin line like reference */
    padding-bottom: 1.5rem;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.featured-title-large {
    font-size: clamp(3rem, 7vw, 8rem);
    /* Responsive huge text */
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin: 0;
    max-width: 80%;
}

.featured-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-top: 1rem;
}

.featured-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.featured-nav-controls {
    display: flex;
    gap: 0.5rem;
}

.featured-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.featured-arrow:hover {
    background: #fff;
    color: #000;
}

.featured-work-grid {
    display: flex;
    overflow-x: auto;
    gap: 0;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE 10+ */
    scroll-snap-type: x mandatory;
}

.featured-work-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari/Opera */
}

/* In-house Grid Layout Toggle */
.featured-work-grid.inhouse-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    overflow-x: visible;
    /* Disable horizontal scroll */
    overflow-y: visible;
    scroll-snap-type: none;
    /* Disable snap */
    padding-bottom: 4rem;
}

.featured-work-grid.inhouse-layout .featured-item {
    min-width: 0;
    width: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .featured-work-grid.inhouse-layout {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

.featured-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s;
    cursor: pointer;
    padding-top: 2rem;
    border-top: 1px solid transparent;
    min-width: 50%;
    /* Show two projects per "page" view in the slider */
    scroll-snap-align: start;
    box-sizing: border-box;
    padding-right: 4rem;
    /* Spacing between items visually if needed, but 100% width usually isolates them */
}

.featured-item:hover {
    opacity: 0.7;
}


.featured-icon {
    font-size: 5rem;
    /* Big icon character */
    font-weight: 800;
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    line-height: 1;
    display: block;
}

.featured-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.featured-item-desc {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 90%;
}

@media (max-width: 1024px) {
    .featured-work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (max-width: 600px) {
    .featured-work-grid {
        grid-template-columns: 1fr;
    }

    .featured-header-row {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .featured-nav {
        width: 100%;
        justify-content: space-between;
        margin-left: auto;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* Approach Section (Marquee) */
.approach-section {
    background-color: #000;
    /* Dark background as requested */
    color: #fff;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 8rem 0 4rem 0;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 4rem;
}

.marquee-content {
    display: inline-block;
    animation: scrollLeft 100s linear infinite;
}

.marquee-text {
    font-size: 10vw;
    /* Massive responsive text */
    font-weight: 500;
    font-family: var(--font-sans);
    letter-spacing: -2px;
    margin-right: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 2rem;
}

.star-spin {
    display: inline-block;
    animation: spin 4s linear infinite;
    font-size: 8vw;
    font-weight: 300;
    vertical-align: middle;
}

.approach-content {
    width: 90%;
    max-width: 900px;
    text-align: left;
    /* Image shows left aligned, or centered? Looks leftish */
    margin: 0 auto;
    padding: 0 2rem;
}

.approach-desc {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--font-sans);
    letter-spacing: -0.02em;
}

.approach-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 90%;
    max-width: 1400px;
    margin-top: auto;
    padding-top: 4rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle divider if needed */
}

.approach-link {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-right: 2rem;
}

.scroll-hint {
    margin-left: auto;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Responsive Approach */
@media (max-width: 768px) {
    .approach-desc {
        font-size: 1.8rem;
    }

    .marquee-text {
        font-size: 6rem;
    }

    .approach-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .scroll-hint {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Workshop Hero (Mission Section) */
.workshop-hero {
    background-color: #000;
    /* Dark contrast */
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    z-index: 10;
    /* Slide over hero */
    box-shadow: 0 -20px 100px rgba(0, 0, 0, 0.9);
    /* Depth shadow on top */
}

.workshop-hero-title {
    font-size: 15vw;
    /* Massive like 'MEET THE FOUNDERS' */
    font-weight: 700;
    line-height: 0.8;
    text-transform: uppercase;
    font-family: var(--font-sans);
    letter-spacing: -5px;
    margin-bottom: 2rem;
    color: #fff;
    word-break: break-word;
    /* Ensure it wraps if needed */
}

.mission-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle visual break maybe? Or remove if strict reference */
    padding-top: 2rem;
}

.mission-label {
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 0 0 200px;
}

.mission-content {
    flex: 1;
    max-width: 800px;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.mission-item p {
    font-size: 1.5rem;
    /* Large readable text */
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-sans);
    letter-spacing: -0.02em;
}

.star-spin-small {
    display: inline-block;
    animation: spin 4s linear infinite;
    font-size: 2rem;
    color: #fff;
    margin-top: 0.2rem;
    /* Align with text cap height roughly */
}

@media (max-width: 768px) {
    .workshop-hero-title {
        font-size: 18vw;
    }

    .mission-row {
        flex-direction: column;
        gap: 2rem;
    }

    .mission-item p {
        font-size: 1.5rem;
    }
}

/* Hero Image Slider (Workshop) */
.hero-image-slider {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15rem;
    background: linear-gradient(to bottom, transparent, #000);
    /* Fade to Mission bg */
    pointer-events: none;
    z-index: 10;
}

/* Update Workshop Hero to blend */
.workshop-hero {
    padding-top: 4rem;
    /* Reduced top padding as image is above */
    min-height: auto;
    /* Allow content to dictate height */
}


/* Workshop Button */
.btn-massive-workshop {
    margin-top: 3rem;
    padding: 1.5rem 4rem;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    align-self: flex-start;
}

.btn-massive-workshop:hover {
    background: #fff;
    color: #000;
}

/* ========================================= */
/* Index Reform (Cow Hero & Mission)         */
/* ========================================= */

.hero-cow {
    position: relative;
    min-height: 100vh;
    width: 100%;
    /* background-image removed */
    background-color: #000;
    /* Ensure black bg */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center motto */
    align-items: center;
    color: #fff;
    padding: 2rem;
}

/* Main Nav Override Removed - Keeping Center Alignment */

/* Add shadow to nav links for visibility */
.nav-link {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* DesignOps Layout Styles */
.hero-designops-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center horizontally */
    padding: 0 5%;
    position: relative;
    z-index: 10;
    text-align: center;
    /* Center text */
    gap: 3rem;
    /* Spacing between main clusters */
}

/* Sections */
section {
    padding: var(--section-padding) 0;
    /* Massive negative space */
    position: relative;
    width: 100%;
}

/* Badge Row */
.designops-badge-row {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    margin-bottom: 2rem;
    padding-top: 3rem;
    /* Align with Nav if needed, or offset */
}

/* Premium Text Style */
.designops-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    /* Bold */
    text-transform: uppercase;
    /* Uppercase */
    letter-spacing: 0.1em;
    /* Premium spacing */
    color: #FFFFFF;

    /* Reference Style */
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    background: transparent;
    backdrop-filter: none;
}

.badge-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Force White Icon */
}



/* Top Headline Row */
.designops-top-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.designops-top-headline {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 400;
    color: #ccc;
    line-height: 1.4;
    margin: 0;
}

.designops-asterisk {
    font-size: 4rem;
    line-height: 1;
    color: #FFD700;
    /* Gold Star */
    animation: spin 10s linear infinite;
}

.designops-green-star {
    font-size: 3rem;
    /* Slightly smaller than main asterisk */
    line-height: 1;
    color: #8DB600;
    /* Vibrant Military Green */
    margin-top: 1rem;
    /* Spacing from H1 */
}

/* Main Big Text */
.designops-main-text {
    font-family: var(--font-sans);
    font-size: clamp(3rem, 7vw, 6rem);
    /* Larger */
    font-weight: 800;
    /* Extra Bold */
    text-transform: uppercase;
    /* Reference Style */
    color: #fff;
    line-height: 1.0;
    max-width: 1400px;
    margin: 0 auto;
    letter-spacing: -0.03em;
}

.designops-sub-text {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.5rem);
    /* Distinctly smaller but readable sub-header */
    font-weight: 400;
    color: #aaa;
    /* Muted color for hierarchy */
    line-height: 1.5;
    max-width: 800px;
    margin: 1.5rem auto 0 auto;
    /* Spacing from H1 */
}

.highlight-dot {
    color: #32CD32;
    /* Lime Green */
}


/* ========================================= */
/* Workshop Curriculum Redesign (Split Header) */
/* ========================================= */

/* Main Container Enforcing 100vh */
.workshop-container {
    height: calc(100vh - 80px);
    /* Subtract nav padding */
    width: 100vw;
    overflow: hidden;
    /* Prevent page scroll */
    display: flex;
    flex-direction: column;
    padding: 0;
    /* Remove default padding to allow edge-to-edge */
    background: #000;
}

/* Header - Static Top */
.workshop-header-redesign {
    flex: 0 0 auto;
    /* Don't grow, just fit content */
    width: 100%;
    padding: 2rem 5%;
    /* Keep internal padding for text alignment */
    /* z-index: 10; Ensure above slider if overlap needed */
}

.header-split-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.header-left {
    flex: 1;
    min-width: 300px;
}

.page-title-split {
    /* Inherits global H1 styles now (Sans, Bold, Upper) */
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0;
    line-height: 1.0;
}

.header-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: flex-end;
    /* Align bottom if needed, or start */
    padding-top: 1rem;
}

.header-desc-split {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #aaa;
    max-width: 500px;
    margin-left: auto;
    /* Push to right */
}

/* Slider Wrapper - Fill Remaining Space */
.curriculum-slider-wrapper {
    flex: 1;
    /* Take all remaining vertical space */
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    /* Center slider vertically in the space */
    justify-content: center;
}

/* The Scrolling Track */
.curriculum-slider {
    display: flex;
    gap: 2rem;
    /* Gap between cards */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
    height: 100%;
    /* Fill the wrapper area */
    align-items: center;
    /* Center cards vertically */
    padding-left: 5%;
    /* Start padding */
    padding-right: 5%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.curriculum-slider::-webkit-scrollbar {
    display: none;
}

/* Slider Controls (Bottom Right of Header area or Card area) */
.slider-controls-external {
    position: absolute;
    bottom: 2rem;
    /* Align near bottom */
    right: 5%;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: auto;
    z-index: 20;
    pointer-events: none;
}

.slider-arrow {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Circle */
    background: #fff;
    color: #000;
    /* Dark arrow */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    transform: scale(1.1);
    background: #f0f0f0;
}

/* Card Layout Refactor - Full Width */
/* Card Layout Refactor - Partial Width with Gap */
.curriculum-card-layout {
    flex: 0 0 45vw;
    /* Show multiple cards */
    min-width: 600px;
    scroll-snap-align: start;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-right: none;
    /* Remove separator */
    position: relative;
}

.card-media {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 32px;
    /* Rounded corners */
    overflow: hidden;
    position: relative;
    background: #222;
    margin-bottom: 2rem;
}

.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.curriculum-card-layout:hover .card-bg-img {
    transform: scale(1.05);
}

/* Play Button - Bottom Right */
.card-play-centered {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    top: auto;
    left: auto;
    transform: none;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    border: none;
    transition: all 0.3s;
}

.curriculum-card-layout:hover .card-play-centered {
    background: #fff;
    color: #000;
    transform: scale(1.1);
    border-color: #fff;
}

/* Center Overlay Text */
.card-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    z-index: 2;
    text-align: center;
    font-family: var(--font-sans);
    width: 100%;
    padding: 0 1rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0;
    /* Reduce margin to clear arrows but save space */
    margin-top: 0;
}

.card-title-below {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    margin-bottom: 0.5rem;
}

/* Ensure old class doesn't interfere if present or map it */
.card-title {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.card-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #888;
    line-height: 1.5;
    max-width: 90%;
    margin-bottom: 1.5rem;
}

/* View Case Link */
.btn-case-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
    border: none;
    padding: 0;
    margin-top: 0;
}

.btn-case-link:hover {
    opacity: 0.7;
    color: #fff;
    border: none;
}

@media (max-width: 768px) {
    .curriculum-card-layout {
        flex: 0 0 85vw;
    }

    .card-title-overlay {
        font-size: 1.8rem;
    }

    .slider-controls-external {
        bottom: 1rem;
        right: 1rem;
        top: auto;
    }
}

@media (max-width: 768px) {
    .header-split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .header-desc-split {
        margin-left: 0;
    }

    .curriculum-card {
        flex: 0 0 85vw;
        /* Full width mobile */
    }
}



/* Stats Row */
.designops-stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    margin-top: 2rem;
    flex-wrap: wrap;
    /* Allow wrap on mobile */
}

.designops-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-value {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: capitalize;
    /* Or uppercase */
}

/* CTA Row */
.designops-cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}



.designops-arrow-down {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    color: #4169E1;
    /* Royal Blue */
    animation: bounce 2s infinite;
}

/* Mobile Adjustments for DesignOps Hero */
@media (max-width: 768px) {
    .designops-stats-row {
        gap: 2rem;
        flex-direction: column;
        /* Stack stats on mobile? Or keep side-by-side but smaller gap? */
        flex-direction: row;
        /* Keep row for 2 items usually looks fine */
    }

    .stat-value {
        font-size: 2rem;
    }

    .designops-main-text {
        font-size: 2rem;
    }

    .designops-badge {
        font-size: 0.8rem;
    }
}

/* Dead code (logo, play button, old overlay) removed */

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Mission Statement Section (Light Mode) */
.mission-statement-section {
    background-color: #f4f4f4;
    /* Light gray/white */
    color: #000;
    padding: 6rem 5% 4rem 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100vh;
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.mission-headline {
    font-size: 5rem;
    font-family: var(--font-sans);
    /* Inter/Helvetica - Bold Sans */
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 3rem;
    letter-spacing: -2px;
}

.mission-subtext {
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.5;
    margin-bottom: 4rem;
    color: #444;
}

.mission-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align bottom or top? User said "on the right side". Flex-start usually better for text. */
    width: 100%;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
    /* responsive */
}

/* Adjustments for Side-by-Side */
.mission-headline {
    margin-bottom: 0;
    /* Remove bottom margin as row handles gap */
    flex: 1;
    /* Take up space */
}

.mission-subtext {
    flex: 0 0 400px;
    /* Fixed width or flex basis for the quote */
    text-align: left;
    margin-bottom: 0;
    padding-left: 2rem;
    border-left: 2px solid #000;
    /* Optional quote styling? User just said "make it a quote". I'll format it cleanly first. */
    /* Remove border for now unless requested, but side alignment implies it */
    margin-top: 1rem;
    /* push down slightly if needed */
}

.mission-arrow-large {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 4rem;
}

.mission-divider {
    width: 100%;
    border: 0;
    border-top: 1px solid #ccc;
    margin-bottom: 4rem;
}

/* Services List */
.services-list-container {
    width: 100%;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.view-all-link {
    text-decoration: underline;
    color: #000;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-item {
    font-family: var(--font-serif);
    /* Italic Serif */
    font-style: italic;
    font-size: 2.5rem;
    color: #333;
    /* Dark gray */
    border-bottom: 1px solid transparent;
    padding-bottom: 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.service-item:hover {
    color: #000;
}

/* TyreDB / Explore Grid Styles */
.explore-grid-section {
    padding: 6rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    background-color: #000;
    /* Dark theme */
}

.dark-card {
    background: #111;
    border: 1px solid #333;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.dark-card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.papers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.paper-link {
    text-decoration: none;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.4;
    transition: color 0.2s;
}

.paper-link strong {
    display: block;
    color: #fff;
    margin-bottom: 0.3rem;
    font-family: var(--font-sans);
}

.paper-desc {
    display: block;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    font-family: var(--font-serif);
}

.paper-link:hover strong {
    color: #FFD700;
    /* Yellow hover */
}

.card-meta {
    margin-top: auto;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .hero-title-serif {
        font-size: 2.5rem;
    }

    .mission-headline {
        font-size: 14vw;
    }

    .service-item {
        font-size: 2rem;
    }

    .hero-logo {
        color: #fff;
        /* Fallback for mobile image overlay */
    }
}

/* Index Hero Slider Overrides */
.hero-cow {
    background-image: none !important;
    /* Remove static bg */
    overflow: hidden;
    /* Contain slider */
    z-index: 1;
}

.hero-bg-slider-abs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind content */
}

/* Ensure slides fill the container */
.hero-bg-slider-abs .hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .motto-title {
        font-size: 3.5rem;
    }

    .motto-asterisk {
        font-size: 5rem;
    }

    .motto-bottom-row {
        flex-direction: column;
        gap: 2rem;
    }

    .motto-desc-col {
        max-width: 100%;
    }
}

/* TyreDB / Explore Grid Styles */
.explore-grid-section {
    padding: 6rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    background-color: #000;
    /* Dark theme */
}

.dark-card {
    background: #111;
    border: 1px solid #333;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.dark-card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.papers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.paper-link {
    text-decoration: none;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.4;
    transition: color 0.2s;
}

.paper-link strong {
    display: block;
    color: #fff;
    margin-bottom: 0.3rem;
    font-family: var(--font-sans);
}

.paper-desc {
    display: block;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    font-family: var(--font-serif);
}

.paper-link:hover strong {
    color: #FFD700;
    /* Yellow hover */
}

.card-meta {
    margin-top: auto;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    padding-top: 1rem;
}

/* TyreDB Home / Tabs */
.tyredb-tabs-container {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    /* Below Main Nav */
    z-index: 50;
    background-color: #000;
    width: 100%;
}

.tyredb-tab-pill {
    display: flex;
    background: #222;
    border-radius: 999px;
    padding: 0.5rem;
    gap: 0.5rem;
    border: 1px solid #333;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #888;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #fff;
    color: #000;
}

.view-section {
    display: none;
}

.view-section.active {
    display: block;
}

/* Marquee Home Style */
.home-marquee-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
    overflow: hidden;
    position: relative;
    padding-bottom: 4rem;
}

.marquee-container {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee-text {
    font-family: var(--font-sans);
    font-size: 15vw;
    /* Massive text */
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    animation: marquee 100s linear infinite;
    padding-right: 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.home-intro-text {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    /* Large headline like image */
    font-weight: 500;
    color: #fff;
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 0 5%;
    text-align: center;
    line-height: 1.2;
}

/* ... (previous styles) ... */

/* TyreDB Footer / Filter Bar */
.tyredb-footer-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    pointer-events: none;
    /* Let clicks pass through around buttons */
}

.footer-pill-container {
    background: #fff;
    border-radius: 999px;
    padding: 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    pointer-events: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Left Filter (Fields) */
.field-selector {
    position: relative;
    background: #fff;
    color: #000;
    border-radius: 999px;
    padding: 0.8rem 2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: space-between;
}

.field-selector:after {
    content: '↓';
    /* Down arrow */
    font-size: 0.8rem;
}

.field-dropdown-menu {
    position: absolute;
    bottom: 120%;
    left: 0;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    min-width: 200px;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.field-dropdown-menu.active {
    display: flex;
}

.field-option {
    background: transparent;
    border: none;
    text-align: left;
    padding: 0.5rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #000;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.field-option:hover {
    background: #f4f4f4;
}

/* Right View Toggles */
.view-toggles {
    display: flex;
    gap: 0.5rem;
    background: #fff;
    /* In image, right side is also pill */
    border-radius: 999px;
    padding: 0.5rem;
    pointer-events: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.view-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.view-btn.active {
    background: #000;
    color: #fff;
}



/* Dada Layout (Explore Replacement) */
.explore-dada-section {
    display: flex;
    min-height: 85vh;
    /* Occupy most of screen */
    background: #000;
    color: #fff;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

/* Left Side: Year + Content */
.dada-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 4rem;
    position: relative;
}

.dada-year {
    font-family: var(--font-sans);
    font-size: 8rem;
    /* Massive Year */
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.dada-year:hover {
    transform: scale(1.02);
}

/* Bouncing / Deepening Animation */
@keyframes yearBounce {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(0.85) translateY(10px);
        filter: brightness(0.6);
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.year-bouncing {
    animation: yearBounce 0.5s ease-in-out;
}

/* Year Selector Modal */
.year-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.year-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-header h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: #666;
}

.year-scroller-container {
    height: 60vh;
    width: 300px;
    overflow-y: auto;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.year-scroller-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.year-list {
    list-style: none;
    padding: 20vh 0;
    /* Center initial years */
    margin: 0;
    text-align: center;
}

.year-option {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    padding: 1rem 0;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.year-option:hover {
    color: #fff;
    transform: scale(1.1);
}

.year-option.selected {
    color: #fff;
    transform: scale(1.2);
}

.close-modal-btn {
    margin-top: 3rem;
    background: none;
    border: 1px solid #333;
    color: #666;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.close-modal-btn:hover {
    border-color: #fff;
    color: #fff;
}

.dada-details {
    max-width: 500px;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.dada-paper-title {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.dada-paper-desc {
    font-family: var(--font-serif);
    /* Serif for body text */
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.5;
}

/* Right Side: Menu List */
.dada-menu-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    /* Align right like image details */
}

.dada-field-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: right;
}

.dada-item {
    font-family: var(--font-sans);
    font-size: 3rem;
    /* Large font for menu items */
    font-weight: 600;
    color: #333;
    /* Greyed out by default */
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.dada-item:hover {
    color: #666;
}

.dada-item.active {
    color: #fff;
    /* White for selected */
}

/* Contact Header Section (Massive Bold Title) */
.contact-header-section {
    background-color: #000;
    height: 40vh;
    display: flex;
    align-items: flex-end;
    /* Align bottom */
    justify-content: center;
    width: 100%;
    border-top: 1px solid #333;
    position: relative;
    padding-bottom: 2rem;
}

.contact-title-massive {
    font-size: clamp(2.5rem, 10vw, 12rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 0.8;
    margin: 0;
    text-align: center;
    font-family: var(--font-sans);
}

/* Updated Contact Section to Full Screen */
.contact-section {
    background-color: #000;
    background-color: #000;
    height: 60vh;
    display: flex;
    align-items: flex-start;
    /* Align top */
    justify-content: center;
    padding: 0 0 4rem 0;
    width: 100%;
    border-top: none;
    /* Remove separator */
}

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

@media (max-width: 768px) {
    .contact-title-massive {
        font-size: 15vw;
        letter-spacing: -2px;
    }
}

/* Hero Scroll Indicator (Minimalistic Arrow) */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    animation: bounceSubtle 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-arrow {
    background: #fff;
    color: #000;
    border-color: #fff;
}

@keyframes bounceSubtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ========================================= */
/* Workshop Curriculum Slider Redesign       */
/* ========================================= */

.curriculum-slider-wrapper {
    width: 100%;
    margin-top: 2rem;
    position: relative;
    /* Ensure arrows are positioned relative to this or outside */
}

.curriculum-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding-right: 5%;
    scroll-snap-type: x mandatory;
    /* Snap enabled */
}

.curriculum-slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.curriculum-card-layout {
    min-width: 400px;
    /* Fixed width for cards */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-snap-align: start;
    /* Snap alignment */
}

@media (max-width: 768px) {
    .curriculum-card-layout {
        min-width: 85vw;
        /* Be wider on mobile */
    }
}

/* Card Media (Image + Overlay) */
.card-media {
    position: relative;
    width: 100%;
    height: 400px;
    /* Taller height from reference */
    border-radius: 32px;
    /* heavily rounded corners */
    overflow: hidden;
    background: #222;
}

.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.curriculum-card-layout:hover .card-bg-img {
    transform: scale(1.05);
}

/* Centered Elements on Image */
.card-play-centered {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    pointer-events: none;
}

.card-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    width: 90%;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: var(--font-sans);
}

/* Content Below Card */
.card-content {
    padding: 0.5rem 0.5rem;
    margin-top: 5rem;
    /* Space for the arrows */
}

.card-title-below {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: var(--font-sans);
}

.card-desc {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    max-width: 90%;
}

.btn-case-link {
    font-size: 0.9rem;
    color: #ddd;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.btn-case-link:hover {
    color: #fff;
}

/* External Controls - Centered Between Image & Text */
.slider-controls-external {
    position: absolute;
    top: 420px;
    /* Below the 400px image */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    gap: 1rem;
    pointer-events: auto;
    z-index: 20;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

/* ========================================= */
/* Icon Styling                              */
/* ========================================= */

.badge-icon-img {
    height: 1.2rem;
    width: auto;
    vertical-align: middle;
    margin-right: 0.5rem;
    opacity: 0.9;
}

.arrow-down-icon,
.scroll-arrow-icon {
    width: 24px;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.8;
}

.arrow-down-icon-large {
    width: 40px;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.9;
}

.play-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 25%;
    /* Padding inside the circle */
}

.nav-arrow-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.link-arrow-icon {
    height: 0.8rem;
    width: auto;
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.btn-case-link:hover .link-arrow-icon {
    transform: translateX(5px);
}

/* ========================================= */
/* Responsive - Global & Navigation          */
/* ========================================= */

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
        /* Reduce padding on mobile */
    }

    /* Global Typography Adjustments */
    html {
        font-size: 14px;
        /* Slightly smaller base font */
    }

    h1 {
        font-size: 3rem;
        /* Prevent massive headings */
    }

    h2 {
        font-size: 2.2rem;
    }

    /* Navigation - Mobile */
    .main-nav {
        padding: 1rem;
        gap: 1.5rem;
        background: rgba(0, 0, 0, 0.95);
        /* Solid background for readability */
    }

    .nav-link {
        font-size: 0.85rem;
    }

    /* Container Adjustments */
    .container {
        width: 100%;
        padding: 0 1.5rem;
    }
}

/* ========================================= */
/* Responsive - Index & Hero Sections        */
/* ========================================= */

@media (max-width: 768px) {

    /* Hero Section */
    .hero h1 {
        font-size: 2.5rem;
        /* Smaller hero title */
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Strategy Section */
    .strategy-section {
        padding: 2rem 0;
    }

    .strategy-container {
        flex-direction: column;
    }

    .strategy-visuals {
        height: 50vh;
        /* Reduce height on mobile */
    }

    .strategy-content {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 1.5rem;
        transform: none;
    }

    /* Mission & Grid Layouts */
    .grid-2-col,
    .partners-grid {
        grid-template-columns: 1fr;
        /* Stack grids */
        gap: 2rem;
    }
}

/* ========================================= */
/* Responsive - Works Page                   */
/* ========================================= */

@media (max-width: 768px) {
    .work-intro {
        text-align: left;
        /* Align left on mobile */
        align-items: flex-start;
        padding: 6rem 1.5rem;
    }

    .work-intro-content {
        margin-right: 0;
        max-width: 100%;
        padding: 0;
    }

    .work-intro h1 {
        font-size: 2.5rem;
    }

    /* Case Study Cards */
    .case-studies-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ========================================= */
/* Responsive - Workshop Page                */
/* ========================================= */

@media (max-width: 768px) {

    /* Workshop Hero */
    .workshop-hero {
        height: auto;
        min-height: 80vh;
        padding: 6rem 1rem 2rem 1rem;
    }

    .workshop-headline {
        font-size: 2.5rem;
    }

    /* Tabs */
    .workshop-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        flex-shrink: 0;
        /* Prevent shrinking */
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    /* Curriculum Slider */
    .curriculum-slider {
        padding-right: 2rem;
        /* Less padding on right */
    }

    .curriculum-card-layout {
        min-width: 85vw;
        /* Nearly full width cards */
    }

    .card-media {
        height: 250px;
        /* Shorter images */
    }

    .slider-controls-external {
        top: 270px;
        /* Adjust arrow position for shorter images */
    }

    .card-content {
        margin-top: 4rem;
        /* Adjust spacing */
    }

    .card-title-overlay {
        font-size: 1.5rem;
    }
}

/* ========================================= */
/* Desktop - Hero Image Fitting              */
/* ========================================= */

@media (min-width: 1024px) {

    .hero,
    .work-intro,
    .workshop-hero {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        background-color: #050505;
        /* Black bars */
    }
}

/* Specific override for top headline case */
.designops-top-headline {
    text-transform: none !important;
    font-weight: 400 !important;
    /* Body font weight */
    font-style: italic;
    font-family: var(--font-serif);
}

/* ------------------------------------------------------------------ */
/* NEW FOOTER STYLES (DesignOps.Dev) */
/* ------------------------------------------------------------------ */

.site-footer {
    background-color: #ffffff;
    color: #000000;
    padding: 6rem 5% 2rem 5%;
    font-family: var(--font-sans);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Top Row: Connect + Links */
.footer-top-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-connect-section {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-connect-section h3 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    text-transform: none;
    letter-spacing: -0.01em;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.newsletter-btn {
    border: 1px solid #ddd;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    transition: all 0.2s ease;
}

.newsletter-btn:hover {
    border-color: #000;
    background: #f5f5f5;
}

/* Links Columns */
.footer-links-group {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 1.5rem;
    color: #000;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #555;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #000;
}

/* Middle Row: Massive Brand Name */
.footer-brand-row {
    margin: 2rem 0;
    overflow: hidden;
}

.brand-huge {
    font-size: clamp(3rem, 13vw, 16rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.8;
    margin: 0;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    user-select: none;
}

/* Workshop Page Specific Footer Tweak */
body.workshop-page .site-footer {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    margin-top: 0;
    /* The workshop hero usually ends abruptly, this helps round it off if it has a color */
}

/* Workshop Mission Star Colors */
.mission-content .mission-item:nth-child(1) .star-spin-small {
    color: #00C853;
    /* Green */
}

.mission-content .mission-item:nth-child(2) .star-spin-small {
    color: var(--color-yellow);
    /* Yellow */
}

.mission-content .mission-item:nth-child(3) .star-spin-small {
    color: #2979FF;
    /* Blue */
}

.mission-content .mission-item:nth-child(4) .star-spin-small {
    color: #FF1744;
    /* Red */
}

/* Bottom Row */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eaeaea;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand-small {
    font-weight: 700;
    font-size: 1.2rem;
    color: #666;
}

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

.bottom-links a {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.bottom-links a:hover {
    color: #000;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 1.5rem 2rem 1.5rem;
    }

    .footer-top-row {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links-group {
        flex-direction: row;
        gap: 3rem;
        width: 100%;
        justify-content: space-between;
    }

    .footer-connect-section h3 {
        font-size: 1.75rem;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .bottom-links {
        flex-wrap: wrap;
        gap: 1.5rem;
        width: 100%;
    }

    /* Mission Header Responsiveness */
    .mission-header-row {
        flex-direction: column;
        gap: 2rem;
    }

    .mission-subtext {
        flex: auto;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #000;
        /* Optional: top border instead of left when stacked */
        padding-top: 1rem;
    }

}




/* =========================================
   TyreDB Location View (Expanding Cards)
   ========================================= */
#location-view.view-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 2rem;
    height: calc(100vh - 120px);
    /* Adjust based on nav height */
    overflow: hidden;
    width: 100%;
}

#location-view.view-section.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
}

.location-header {
    text-align: center;
    margin-bottom: 2rem;
}

.location-header h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.location-cards-container {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 1rem;
    padding-bottom: 4rem;
    /* Increased spacing */
}

.location-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    flex: 0.5;
    margin: 10px;
    margin: 10px;
    position: relative;
    transition: flex 1.2s ease;
    /* Calmer, smooth transition */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    min-width: 60px;
}

.location-card:hover {
    flex: 5;
    /* Expanded state */
}

.location-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0;
    /* Hidden when collapsed */
    white-space: nowrap;
    transition: opacity 0.4s ease 0.2s;
    /* Delay fade in */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.location-desc {
    font-size: 1rem;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.4s ease 0.2s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Show content on active/hover */
.location-card:hover .location-title,
.location-card:hover .location-desc {
    opacity: 1;
}

@media (max-width: 768px) {
    .location-cards-container {
        flex-direction: column;
        height: auto;
        min-height: 80vh;
    }

    .location-card {
        flex: 1;
        /* Equal height on mobile usually better than expand */
        min-height: 100px;
        margin: 5px 0;
    }

    .location-card:hover {
        flex: 3;
        /* Slight expansion on mobile tap */
    }

    .location-card .location-title,
    .location-card .location-desc {
        opacity: 1;
        /* Always show title on mobile or it's confusing */
        white-space: normal;
    }
}



/* =========================================
   Explore View 3-Column Redesign
   ========================================= */
.explore-dada-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Vertically center the card */
    width: 100%;
    height: 70vh;
    /* Fixed height for interaction area */
    gap: 3rem;
    padding: 0 5%;
}

/* Col 1: Year */
.dada-year-column {
    flex: 0 0 auto;
}

.dada-year {
    font-size: 8vw;
    /* Massive Year */
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    /* Subtle */
    cursor: pointer;
    transition: color 0.3s;
}

.dada-year:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Col 2: Summary Card */
.dada-summary-card {
    flex: 1;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    /* Glassy */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeIn 0.5s forwards 0.3s;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.card-year-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
}

.card-media-icons {
    display: flex;
    gap: 1rem;
}

.media-icon {
    width: 20px;
    height: 20px;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.media-icon:hover {
    opacity: 1;
}

.dada-paper-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.dada-paper-desc {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.read-summary-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 1rem;
    align-self: flex-start;
    transition: transform 0.2s;
}

.read-summary-btn:hover {
    transform: scale(1.05);
}

/* Col 3: Menu Right */
.dada-menu-right {
    flex: 0 0 300px;
    height: 60vh;
    overflow-y: auto;
}

/* ========================================= */
/* Workshop Layout Fixes                     */
/* ========================================= */

.workshop-hero {
    position: relative;
    min-height: 100vh;
    /* Ensure full height */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    align-items: center;
    /* Center content horizontally */
    padding: 8rem 2rem;
    /* Ample padding */
    background: #050505;
    /* Align with theme */
    z-index: 1;
    /* Ensure base z-index */
    overflow: visible;
    /* Allow button to be seen if it sticks out, but it shouldn't */
}

.workshop-hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.mission-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.btn-massive-workshop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 9999px;
    transition: all 0.3s ease;
    margin-top: 2rem;
    z-index: 10;
    position: relative;
    /* Ensure it respects z-index */
}

.btn-massive-workshop:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Ensure footer doesn't overlap */
body.workshop-page .site-footer {
    position: relative;
    z-index: 2;
    margin-top: 0;
    /* Clear any negative margin */
    padding-top: 6rem;
    /* Good separation */
    background: #fff;
    /* Ensure opaque background */
}