/* DEEP CUTS - APEX VERSION */

:root {
    --color-accent: #FF0015;
    --color-white: #FFFFFF;
    --font-primary: "freight-sans-pro", sans-serif;
    --font-display: var(--display);
    --font-mono: var(--mono);
}

.choice-cuts-body {
    background-color: #050505;
    background-image:
        /* Major grid lines — every 5th cell */
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
        /* Minor grid lines */
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size:
        200px 200px,  /* major — 5 × 40px cell */
        200px 200px,
        40px 40px,    /* minor — base cell */
        40px 40px;
    color: var(--color-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.apex-nav {
    position: fixed;
    top: 4rem;
    left: 4rem;
    right: 4rem;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.nav-name {
    color: white;
    text-decoration: none;
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 900;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: white;
    opacity: 0.6;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--color-accent);
    opacity: 1;
}

.choice-cuts-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.page-header-section {
    text-align: center;
    height: 100vh; /* Fill entire viewport */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical center */
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
}

.page-title-massive {
    font-family: var(--font-display);
    font-size: clamp(80px, 20vw, 350px);
    line-height: 0.75;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    background:
        linear-gradient(135deg, rgba(200,0,30,0.15) 0%, rgba(255,20,50,0.1) 50%, rgba(180,0,20,0.15) 100%),
        url('assets/choice-cuts-texture.jpg') center/cover;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: brightness(1.1) saturate(1.2) contrast(1.05);
    padding: 0.15em 0.1em;
    margin: 0 0 4rem 0;
}

.choice-cuts-page {
    padding: 0 4rem 12rem 4rem; /* Content starts after the hero */
}

.page-subtitle-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: #8B0020;
    text-transform: uppercase;
}

.lessons-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
}

.lesson-row {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 0, 0, 0.15);
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.lesson-row:hover {
    background-color: rgba(255, 0, 0, 0.02);
}

.lesson-number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.6;
}

.lesson-row:hover .lesson-number {
    opacity: 1;
}

.lesson-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lesson-text {
    font-family: var(--font-display);
    font-size: clamp(44px, 9.5vw, 200px); /* ELEVATED FOCAL POINT */
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.lesson-row:hover .lesson-text {
    color: #bb0006;
    transform: skewX(-2deg);
}

@keyframes vibrate-small {
    0% { transform: translate(0); text-shadow: 0 0 5px var(--color-accent); }
    25% { transform: translate(-1px, 1px); }
    50% { transform: translate(-1px, -1px); }
    75% { transform: translate(1px, 1px); }
    100% { transform: translate(1px, -1px); }
}

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

a:hover {
    color: var(--color-accent);
}

.lesson-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    opacity: 0.4;
    text-transform: uppercase;
}

/* Filter Section */
.filter-section {
    margin-top: 150px;
    padding-bottom: 80px;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.filter-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.filter-label {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    opacity: 0.3;
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    padding: 8px 15px;
    cursor: pointer;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .apex-nav { top: 3.5rem; left: 3.5rem; right: 3.5rem; }
    .nav-name { font-size: 1.2rem; }
    .lesson-row {
        grid-template-columns: 150px 1fr;
        padding: 40px 0;
        gap: 40px;
    }
}

@media (orientation: portrait) and (max-width: 1024px) {
    .apex-nav { top: 2.5rem; left: 2rem; right: 2rem; }
    .nav-name { font-size: 1.1rem; max-width: 60%; line-height: 1.2; }
}

@media (max-width: 768px) {
    .apex-nav {
        left: 2rem;
        right: 2rem;
        top: 2.5rem;
    }
    .nav-name { font-size: 0.9rem; max-width: 55%; line-height: 1.2; }
    .page-title-massive { font-size: clamp(55px, 16vw, 100px); white-space: nowrap; }
    .page-subtitle-meta { color: #ffffff; text-shadow: 0 2px 10px rgba(0,0,0,0.9); }
    .choice-cuts-wrapper {
        left: 2rem;
        right: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .choice-cuts-page {
        padding-left: 0;
        padding-right: 0;
    }
    .lesson-row {
        padding: 40px 0;
        gap: 20px;
    }
    .lesson-row:hover {
        padding-left: 0;
    }
    .lesson-number {
        font-size: 0.7rem;
        color: #FF0015;
        opacity: 0.8;
    }
    .lesson-text {
        font-size: clamp(26px, 9vw, 54px);
        line-height: 0.85;
        text-wrap: balance;
    }
}

@media (max-width: 480px) {
    .apex-nav { top: 2.5rem; left: 2rem; right: 2rem; }
    .nav-name { font-size: 0.8rem; max-width: 55%; line-height: 1.1; }
    .lesson-text {
        font-size: clamp(22px, 9.5vw, 38px);
        line-height: 0.85;
        text-wrap: balance;
    }
}
