//-----------------------------------------------------------------------------Mobile toggle
/* --- 1. DESKTOP NAVIGATION (Default) --- */
.site-header {
    width: 100%;
    background-color: var(--newsprint);
    border-bottom: 4px solid var(--racing-red);
    padding: 1.2rem 0;
    position: relative;
    z-index: 2000;
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
}

/* Desktop Menu: Visible by default */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    font-family: var(--font-technical);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink-black);
    transition: color 0.2s ease;
}

/* Active State */
.nav-link.active {
    color: var(--mustard) !important;
}

/* Hide Burger on Desktop */
.mobile-toggle {
    display: none !important;
}

/* --- 2. MOBILE NAVIGATION (UNDER 850PX) --- */
@media (max-width: 850px) {
    
    /* Show the Burger */
    .mobile-toggle {
        display: block !important;
        background: var(--racing-red);
        color: white;
        border: 2px solid var(--ink-black);
        padding: 8px 15px;
        font-family: var(--font-technical);
        font-weight: 700;
        cursor: pointer;
        z-index: 2100;
    }

    /* FORCE HIDE THE MENU ON MOBILE */
    .nav-menu {
        display: none !important; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* Full screen mobile menu */
        background: var(--newsprint);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 2000;
    }

    /* THE CSS OVERRIDE: When JS adds 'mobile-active', we FORCE it to show */
    .nav-menu.mobile-active {
        display: flex !important;
    }

    .nav-link {
        font-size: 2rem; /* Big touch targets */
    }
}



/* --- 1. FONTS & VARIABLES --- */
@font-face {
    font-family: 'Climate Crisis';
    src: url('assets/Fonts/ClimateCrisis.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --mustard: #E3B448;
    --racing-red: #C21807;
    --br-green: #004225;
    --newsprint: #F5F2E7;
    --ink-black: #1A1A1A;
    --font-heading: 'ITC Bauhaus', 'Climate Crisis', sans-serif;
    --font-technical: 'Antonio', sans-serif;
}

/* --- 2. BASE RESET --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--newsprint);
    color: var(--ink-black);
    font-family: var(--font-technical);
    -webkit-font-smoothing: antialiased;
}

/* --- 3. HEADER & NAV --- */
.site-header {
    width: 100%;
    background-color: var(--newsprint);
    border-bottom: 4px solid var(--racing-red);
    padding: 1.2rem 0;
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
}

.header-left, .header-right { flex: 1; }

.brand-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--br-green);
    text-decoration: none;
    text-transform: uppercase;
}

.header-center { flex: 0 0 auto; }
.main-logo { height: 75px; width: auto; display: block; }

.header-right { display: flex; justify-content: flex-end; }
.nav-menu { list-style: none; display: flex; gap: 1.8rem; }

.nav-link {
    text-decoration: none;
    font-family: var(--font-technical);
    font-weight: 700;
    color: var(--ink-black);
    transition: color 0.2s;
}

.nav-link:hover { color: var(--racing-red); }
.nav-link.active { color: var(--mustard); }

/* --- 4. HERO SECTION --- */
.home-hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0;
    border-bottom: 2px solid var(--ink-black);
}

.column { padding: 2.5rem; }
.left-border { border-right: 1px solid rgba(0,0,0,0.1); }
.right-border { border-left: 1px solid rgba(0,0,0,0.1); }

.col-center { text-align: center; background: #fff; }

.main-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--br-green);
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.sub-headline { font-size: 1.2rem; max-width: 500px; margin: 0 auto 2rem; }
.hosts { display: block; margin-top: 10px; color: var(--racing-red); font-weight: 700; }

/* --- 5. DYMO & BUTTONS --- */
.dymo-cta {
    display: inline-block;
    background-color: var(--racing-red);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: inset 1px 1px 1px rgba(255,255,255,0.4), 2px 2px 0px rgba(0,0,0,0.3);
    border-radius: 3px;
    margin-top: 1rem;
}

.ignition-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, #d61a08 0%, #a01406 100%);
    border: 6px solid var(--ink-black);
    cursor: pointer;
    box-shadow: 0 6px 0px #333;
    margin-bottom: 1rem;
}

.btn-label { color: white; font-weight: 700; letter-spacing: 1px; }

/* Side Headlines */
.category-tag { font-weight: 700; color: var(--mustard); margin-bottom: 0.5rem; text-transform: uppercase; }
.side-headline { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 1rem; line-height: 1; }
.read-more { font-weight: 700; text-decoration: none; color: var(--ink-black); border-bottom: 2px solid var(--racing-red); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .col-center { order: -1; }
}

/* --- PODCAST RADIO SECTION (FULL HEIGHT TUNING) --- */
.paddock-radio {
    background-color: var(--ink-black);
    height: 85vh; /* Takes up most of the screen height */
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-bottom: 8px solid var(--br-green); /* A thick "Asphalt" footer line */
}

.radio-stage {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.helmet-wrap {
    height: 100%; /* Match Section Height */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.radio-helmet {
    height: 90%; /* Leaves a tiny bit of breathing room top/bottom */
    width: auto; /* Keeps aspect ratio perfect */
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8));
    transition: transform 0.5s ease-in-out;
}

/* --- THE PULSE (Scales with the Helmet) --- */
.pulse-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vh; /* Based on height to stay proportional to helmet */
    height: 60vh;
    display: none;
}

.is-playing .pulse-wrapper { display: block; }

.ring {
    position: absolute;
    border: 6px solid var(--mustard);
    border-radius: 50%;
    inset: 0;
    opacity: 0;
    animation: pulse-ring 3s infinite linear;
}

.ring:nth-child(2) { animation-delay: 1s; }
.ring:nth-child(3) { animation-delay: 2s; }

@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.4; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* --- SIDE CONTROLS --- */
.controls-panel {
    position: absolute;
    right: 10%;
    background: rgba(26, 26, 26, 0.9);
    padding: 30px;
    border: 2px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.feed-info {
    margin-top: 20px;
    text-align: center;
    max-width: 200px;
}

.feed-info .status {
    color: var(--mustard);
    font-family: var(--font-technical);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.feed-info .title {
    color: white;
    font-family: var(--font-technical);
    font-size: 0.9rem;
    margin-top: 5px;
    text-transform: uppercase;
}

/* --- 70s TOGGLE SWITCH (No changes needed, remains tactile) --- */
.toggle-switch {
    position: relative;
    display: block;
    width: 50px;
    height: 80px;
    cursor: pointer;
}
.toggle-switch input { display: none; }
.switch-handle {
    position: absolute;
    inset: 0;
    background-color: #222;
    border: 3px solid #444;
    border-radius: 8px;
}
.switch-handle:before {
    position: absolute;
    content: "";
    height: 30px; width: 16px;
    left: 14px; bottom: 8px;
    background: linear-gradient(to bottom, #777, #eee, #777);
    border-radius: 3px;
    transition: .3s;
}
input:checked + .switch-handle { background-color: var(--br-green); }
input:checked + .switch-handle:before { transform: translateY(-30px); }

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 900px) {
    .paddock-radio { height: auto; padding: 60px 0; }
    .radio-stage { flex-direction: column; }
    .radio-helmet { height: 400px; }
    .controls-panel { position: relative; right: 0; margin-top: 40px; }
}

/* --- PADDOCK SPECIFIC STYLES --- */
.paddock-page { background-color: var(--ink-black); color: var(--newsprint); }

.paddock-hero {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background-color: #111;
}

/* Slicked Asphalt Texture Effect */
.asphalt-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/asphalt-dark.png'); /* Low-carbon tiled texture */
    opacity: 0.3;
    pointer-events: none;
}

.paddock-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--mustard);
    line-height: 0.85;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.paddock-sub {
    font-family: var(--font-technical);
    font-size: 1.4rem;
    color: var(--newsprint);
    max-width: 700px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.paddock-brief-box {
    border-left: 4px solid var(--racing-red);
    padding-left: 2rem;
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(245, 242, 231, 0.8);
}

/* Filter Zone */
.filter-zone { margin: 4rem auto; text-align: center; }

.filter-tags { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.filter-btn {
    background: transparent;
    border: 1px solid rgba(245, 242, 231, 0.3);
    color: var(--newsprint);
    font-family: var(--font-technical);
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--mustard);
    color: var(--ink-black);
    border-color: var(--mustard);
}

/* Post Grid */
.paddock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    padding-bottom: 8rem;
}

.post-card {
    background: #1a1a1a;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.post-card:hover { transform: translateY(-10px); }

.card-img-wrap { width: 100%; height: 220px; overflow: hidden; background: #222; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.2); transition: 0.5s; }
.post-card:hover img { filter: grayscale(0); }

.card-meta { padding: 1.5rem 1.5rem 0.5rem; display: flex; justify-content: space-between; font-weight: 700; font-size: 0.8rem; color: var(--mustard); }

.post-card h3 {
    font-family: var(--font-heading);
    padding: 0 1.5rem 1rem;
    font-size: 1.8rem;
    color: white;
}

.post-card p { padding: 0 1.5rem 2rem; color: rgba(255,255,255,0.6); font-size: 1rem; }


/* --- GARAGE SPECIFIC (WORKSHOP VIBE) --- */
.garage-page {
    background-color: #e0e0e0; /* Slightly cooler grey than newsprint */
    background-image: 
        linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 40px 40px; /* Technical Grid Background */
}

.garage-hero { padding: 4rem 0; }
.garage-title { font-family: var(--font-heading); color: var(--br-green); font-size: clamp(2.5rem, 5vw, 4.5rem); }

.garage-brief {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border: 2px solid var(--ink-black);
}

.verdict-key { font-family: var(--font-heading); font-size: 0.9rem; border-left: 2px solid #ccc; padding-left: 2rem; }
.key-item { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }

.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot.green { background: #28a745; box-shadow: 0 0 10px #28a745; }
.dot.amber { background: var(--mustard); box-shadow: 0 0 10px var(--mustard); }
.dot.red { background: var(--racing-red); box-shadow: 0 0 10px var(--racing-red); }

/* --- BASEBALL CARDS --- */
.garage-workspace { display: grid; grid-template-columns: 1fr 350px; gap: 2rem; margin-top: 3rem; align-items: start; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }

.baseball-card {
    background: white;
    padding: 12px;
    border: 1px solid #ddd;
    box-shadow: 5px 5px 0px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.baseball-card:hover { transform: rotate(-1deg) scale(1.02); }

.card-inner { border: 4px solid var(--br-green); padding: 5px; height: 100%; display: flex; flex-direction: column; }
.card-header { background: var(--br-green); color: white; font-size: 0.6rem; text-align: center; padding: 4px; font-weight: bold; }
.card-photo { flex: 1; overflow: hidden; border: 2px solid var(--br-green); margin: 5px 0; }
.card-photo img { width: 100%; height: 200px; object-fit: cover; filter: sepia(0.2) contrast(1.1); }

.card-footer { display: flex; justify-content: space-between; align-items: center; padding: 5px; background: #f9f9f9; }
.car-name { font-family: var(--font-heading); font-size: 1.1rem; }
.verdict-dot { width: 15px; height: 15px; border-radius: 50%; border: 2px solid #333; }
.verdict-dot.green { background: #28a745; }
.verdict-dot.amber { background: var(--mustard); }

/* --- TELEMETRY SIDEBAR --- */
.telemetry-sidebar {
    background: var(--mustard);
    border: 3px solid var(--ink-black);
    position: sticky;
    top: 20px;
}

.telemetry-header { background: var(--br-green); color: white; padding: 10px; font-family: var(--font-technical); font-weight: 700; text-align: center; letter-spacing: 2px; }
.telemetry-body { padding: 20px; font-family: 'Space Mono', monospace; font-size: 0.85rem; }

.spec-row { margin-bottom: 15px; border-bottom: 1px dashed rgba(0,0,0,0.2); padding-bottom: 5px; }
.spec-row .label { font-weight: bold; color: var(--br-green); }
.spec-row .val { display: block; margin-top: 2px; font-weight: 700; text-transform: uppercase; }

.verdict-box { background: rgba(255,255,255,0.3); padding: 10px; margin-top: 20px; border: 1px solid rgba(0,0,0,0.1); }
.verdict-label { font-weight: bold; font-size: 0.7rem; color: var(--racing-red); margin-bottom: 5px; }
.verdict-quote { font-style: italic; color: var(--ink-black); line-height: 1.4; }

.telemetry-footer { font-size: 0.6rem; text-align: center; padding: 10px; opacity: 0.5; }


/* --- FULL SCREEN OVERLAY --- */
.telemetry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999; /* Make sure it's above everything */
    display: none; 
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

/* Force the display when active */
.telemetry-overlay.active {
    display: flex !important;
}


.telemetry-card {
    background: var(--mustard);
    width: 100%;
    max-width: 700px;
    border: 4px solid var(--ink-black);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: cardEntry 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes cardEntry {
    from { transform: scale(0.8) translateY(50px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.telemetry-header {
    background: var(--br-green);
    color: white;
    padding: 15px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 2px;
}

.telemetry-body {
    padding: 40px;
    font-family: 'Space Mono', monospace; /* Monospaced for technical feel */
}

.spec-row {
    margin-bottom: 25px;
    border-bottom: 2px dashed rgba(0,0,0,0.1);
    padding-bottom: 10px;
}

.spec-row .label {
    font-weight: bold;
    color: var(--br-green);
    font-size: 0.9rem;
    display: block;
}

.spec-row .val {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink-black);
    text-transform: uppercase;
}

.verdict-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.verdict-box {
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.1);
}

.verdict-label {
    font-family: var(--font-technical);
    font-weight: 700;
    color: var(--racing-red);
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.verdict-quote {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--ink-black);
}

.telemetry-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.05);
}

.sync-text { font-size: 0.7rem; opacity: 0.5; font-family: 'Space Mono'; }

.close-overlay {
    background: var(--ink-black);
    color: white;
    border: none;
    padding: 10px 20px;
    font-family: var(--font-technical);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.close-overlay:hover { background: var(--racing-red); }

@media (max-width: 600px) {
    .verdict-container { grid-template-columns: 1fr; }
    .telemetry-body { padding: 20px; }
}


//--------------------------------------------------------------------------Boardroom
/* --- BOARDROOM SPECIFIC STYLES --- */
.boardroom-page {
    background-color: var(--newsprint);
}

/* THE TICKER */
.ticker-wrap {
    width: 100%;
    background: var(--br-green);
    color: var(--mustard);
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 2px solid var(--ink-black);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: tickerLoop 30s linear infinite;
}

.ticker-item {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0 40px;
    border-right: 1px solid rgba(227, 180, 72, 0.3);
}

@keyframes tickerLoop {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* HERO SECTION */
.boardroom-hero {
    padding: 6rem 0;
    border-bottom: 1px solid #ddd;
}

.boardroom-title {
    font-family: var(--font-heading);
    color: var(--br-green);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.85;
    margin-bottom: 1.5rem;
}

.boardroom-sub {
    font-family: var(--font-technical);
    font-size: 1.4rem;
    max-width: 600px;
    color: #444;
}

/* MEMO CARDS */
.news-memo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.memo-card {
    background: white;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 2px 0px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.memo-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px var(--mustard);
    border-color: var(--ink-black);
}

.memo-card.highlight {
    background: var(--br-green);
    color: white;
}

.memo-header {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.03);
    color: #888;
}

.highlight .memo-header {
    border-bottom-color: rgba(255,255,255,0.1);
    color: var(--mustard);
}

.memo-body {
    padding: 30px 20px;
    flex: 1;
}

.memo-tag {
    font-family: var(--font-technical);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--racing-red);
    display: block;
    margin-bottom: 10px;
}

.memo-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 15px;
}

.memo-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.8;
}

.memo-meta {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    opacity: 0.5;
}

.memo-link {
    padding: 15px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
    font-family: var(--font-technical);
    font-weight: 700;
    color: var(--ink-black);
    font-size: 0.9rem;
    transition: 0.2s;
}

.highlight .memo-link {
    color: var(--mustard);
    border-top-color: rgba(255,255,255,0.1);
}

.memo-link:hover {
    background: var(--mustard);
    color: var(--ink-black);
}


//----------------------------------------------------------------------------------------------Studio
/* --- THE STUDIO: ANALOG BOOTH STYLES --- */

.studio-page {
    background-color: var(--newsprint);
    /* Subtle vertical "Acoustic Wall" lines */
    background-image: linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 20px 100%;
}

.studio-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    border-bottom: 2px solid var(--ink-black);
}

.studio-title {
    font-family: var(--font-heading);
    color: var(--br-green);
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.85;
    margin-bottom: 2rem;
}

.studio-manifesto {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: var(--font-technical);
    color: #333;
    padding: 0 20px;
}

/* --- THE VOICES (Jim & Amber Cards) --- */
.voices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 5rem auto;
    max-width: 1200px;
    padding: 0 20px;
}

.voice-card {
    background: white;
    border: 3px solid var(--ink-black);
    display: flex;
    flex-direction: column;
    box-shadow: 12px 12px 0px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.voice-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 15px 15px 0px var(--mustard);
}

.voice-photo-wrap {
    position: relative;
    width: 100%;
    height: 450px;
    background: var(--ink-black);
    overflow: hidden;
}

.voice-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) sepia(0.2) contrast(1.2);
    opacity: 0.9;
    transition: 0.5s;
}

.voice-card:hover .voice-photo {
    filter: grayscale(0) contrast(1);
    opacity: 1;
}

/* The Dymo Labels on the Photos */
.voice-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    font-family: var(--font-technical);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.4);
    z-index: 5;
}

.red-label { background: var(--racing-red); color: white; transform: rotate(-2deg); }
.mustard-label { background: var(--mustard); color: var(--ink-black); transform: rotate(1deg); }

.voice-content {
    padding: 40px;
}

.voice-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--br-green);
    margin-bottom: 15px;
}

.voice-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

/* --- THE PATCH BAY (Hardware Rack) --- */
.patch-bay {
    background: #1a1a1a; /* Dark hardware look */
    max-width: 1000px;
    margin: 6rem auto;
    padding: 60px;
    border: 6px solid #333;
    position: relative;
    /* Adding "Screws" in corners with CSS */
    box-shadow: 
        inset 0 0 100px rgba(0,0,0,0.5),
        20px 20px 0px rgba(0,0,0,0.1);
}

/* Decorative hardware "screws" */
.patch-bay::before, .patch-bay::after {
    content: "⊕";
    position: absolute;
    color: #444;
    font-size: 1.2rem;
}
.patch-bay::before { top: 10px; left: 10px; }
.patch-bay::after { bottom: 10px; right: 10px; }

.patch-header {
    font-family: 'Space Mono', monospace;
    color: var(--mustard);
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.patch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.patch-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #252525;
    padding: 20px;
    text-decoration: none;
    border-left: 5px solid #444;
    transition: all 0.2s;
}

.patch-link:hover {
    background: #333;
    border-left-color: var(--racing-red);
}

.patch-dymo {
    font-family: var(--font-technical);
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

/* "Live" Indicator LEDs */
.patch-status {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    text-transform: uppercase;
}

.studio-foote



//---------------------------------------------------------Global footer
/* --- GLOBAL FOOTER: THE BACK COVER --- */
.global-footer {
    background-color: var(--br-green);
    color: var(--newsprint);
    padding: 80px 0 40px;
    margin-top: 0; /* Let sections flow directly into it */
    border-top: 8px solid var(--racing-red);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 40px;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--mustard);
    margin-bottom: 20px;
}

.footer-nav h4, .footer-social h4 {
    font-family: var(--font-technical);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: rgba(245, 242, 231, 0.6);
}

.footer-nav ul { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { 
    color: var(--newsprint); 
    text-decoration: none; 
    font-weight: 700;
    transition: 0.2s;
}
.footer-nav a:hover { color: var(--mustard); }

.copyright-bar {
    grid-column: span 3;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 242, 231, 0.1);
    display: flex;
    justify-content: space-between;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    opacity: 0.5;
}

@media (max-width: 800px) {
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .copyright-bar { flex-direction: column; gap: 10px; }
}


