/* ═══════════════════════════════════════════════════════════════
   HOME PAGE — STANDALONE STYLES
   Twintail Translation Project
   Design: TAILGEAR SYSTEM BOOT / demo scene × tokusatsu
═══════════════════════════════════════════════════════════════ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&display=swap');

@font-face {
    font-family: 'Urbanist';
    src: url('/fonts/Jost-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}
@font-face {
    font-family: 'Urbanist';
    src: url('/fonts/Jost-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

/* ─── DESIGN TOKENS ─── */
:root {
    --crimson:      #e0003a;
    --crimson-hot:  #ff1a46;
    --crimson-glow: rgba(224, 0, 58, 0.7);
    --gold:         #ffc000;
    --gold-dim:     rgba(255, 192, 0, 0.5);
    --blue-tail:    #4fc3f7;
    --void:         #050008;
    --void-mid:     #0d0015;
    --void-card:    rgba(13, 0, 21, 0.8);
    --text:         #f0f0f0;
    --text-dim:     rgba(240, 240, 240, 0.6);
    --mono:         'Courier New', 'Consolas', monospace;
    --display:      'Orbitron', sans-serif;
    --body:         'Urbanist', sans-serif;
}

/* ─── RESET / BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

a { text-decoration: none; }


/* ═══════════════════════════════════════════════════════════════
   NAV — glass morphism, transparent on hero / solid when scrolled
═══════════════════════════════════════════════════════════════ */

.home-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.45s ease, border-color 0.45s ease, backdrop-filter 0.45s ease;
}

.home-nav.scrolled {
    background: rgba(5, 0, 8, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-color: rgba(224, 0, 58, 0.25);
}

.home-nav .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-nav .site-title {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    text-shadow: 0 0 20px var(--crimson-glow), 0 0 45px rgba(224, 0, 58, 0.3);
    transition: text-shadow 0.3s;
}
.home-nav .site-title:hover {
    text-shadow: 0 0 30px var(--crimson-glow), 0 0 60px rgba(224, 0, 58, 0.5);
}

.home-nav .nav-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.home-nav .nav-menu a {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.25s;
}
.home-nav .nav-menu a:hover { color: var(--crimson-hot); }


/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--void);
}

/* Background image — slow Ken Burns float after reveal */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    filter: brightness(0.72) saturate(1.15);
    animation:
        heroBgReveal 1.4s ease-out 0.3s both,
        heroBgFloat  25s ease-in-out 2s infinite;
}

@keyframes heroBgReveal {
    from { opacity: 0; transform: scale(1.1); filter: brightness(0) saturate(0); }
    to   { opacity: 1; transform: scale(1.05); filter: brightness(0.72) saturate(1.15); }
}
@keyframes heroBgFloat {
    0%,100% { transform: scale(1.05) translate(0, 0); }
    33%     { transform: scale(1.07) translate(-0.5%, 0.3%); }
    66%     { transform: scale(1.06) translate(0.5%, -0.2%); }
}

/* Directional gradient — dark left for legible text, fade to bottom */
.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(5,0,8,0.90) 0%, rgba(5,0,8,0.55) 45%, rgba(5,0,8,0.10) 100%),
        linear-gradient(to top,  rgba(5,0,8,0.95) 0%, transparent 55%);
    pointer-events: none;
}

/* CRT scanlines */
.hero-scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.09) 2px,
        rgba(0,0,0,0.09) 4px
    );
    animation: scanlinePulse 9s ease-in-out infinite;
}

@keyframes scanlinePulse {
    0%,100% { opacity: 0.55; }
    50%     { opacity: 1; }
}

/* Sweeping scan line */
.hero-scanlines::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(224,0,58,0.05) 50%,
        transparent 100%
    );
    background-size: 100% 200%;
    animation: scanSweep 7s linear infinite;
}
@keyframes scanSweep {
    from { background-position: 0 -100%; }
    to   { background-position: 0 200%; }
}

/* Particles canvas */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

/* Content container */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 3rem 3rem;
}

/* System boot label */
.system-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--crimson-hot);
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: bootLabel 0.5s ease-out 0.8s forwards;
    text-shadow: 0 0 12px var(--crimson-glow);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
@keyframes bootLabel {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}

.sys-diamond { color: var(--gold); font-size: 0.6rem; }
.sys-ver     { color: var(--text-dim); font-size: 0.65rem; }
.sys-status  { color: #00e87a; }
.sys-divider { color: rgba(255,255,255,0.2); }

/* MAIN TITLE */
.hero-title {
    display: flex;
    flex-direction: column;
    font-family: var(--display);
    font-weight: 900;
    font-style: italic;
    line-height: 0.95;
    margin-bottom: 0.9rem;
}

.title-line-1 {
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    color: var(--text);
    letter-spacing: 5px;
    opacity: 0;
    animation: titleSlam 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 1.1s forwards;
    text-shadow:
        2px  0   rgba(255,0,60,0.7),
        -2px 0   rgba(79,195,247,0.5),
        0    0   25px rgba(240,240,240,0.2);
}

.title-line-2 {
    font-size: clamp(3rem, 9.5vw, 8.5rem);
    color: var(--crimson-hot);
    letter-spacing: 1px;
    opacity: 0;
    animation:
        titleSlam  0.55s cubic-bezier(0.22, 0.61, 0.36, 1) 1.3s forwards,
        titleGlitch 9s  ease-in-out 3.5s infinite;
    text-shadow:
        3px  0   rgba(255,0,60,0.85),
        -3px 0   rgba(79,195,247,0.45),
        0    0   40px rgba(224,0,58,0.9),
        0    0   90px rgba(224,0,58,0.35);
    display: block;
}

@keyframes titleSlam {
    from { opacity: 0; transform: translateX(-40px); filter: blur(6px); }
    60%  { opacity: 1; transform: translateX(5px); filter: blur(0); }
    to   { opacity: 1; transform: translateX(0); filter: blur(0); }
}

/* Periodic glitch on the big red line */
@keyframes titleGlitch {
    0%,85%,100% {
        transform: translate(0);
        clip-path: none;
        text-shadow:
            3px  0 rgba(255,0,60,0.85), -3px 0 rgba(79,195,247,0.45),
            0 0 40px rgba(224,0,58,0.9), 0 0 90px rgba(224,0,58,0.35);
    }
    86% {
        transform: translate(-4px, 1px);
        clip-path: polygon(0 10%, 100% 10%, 100% 32%, 0 32%);
        text-shadow: 7px 0 rgba(255,0,60,1), -7px 0 rgba(79,195,247,0.8), 0 0 40px rgba(224,0,58,0.9);
    }
    87% {
        transform: translate(4px, -2px);
        clip-path: polygon(0 58%, 100% 58%, 100% 76%, 0 76%);
    }
    88% {
        transform: translate(0);
        clip-path: none;
        text-shadow: 3px 0 rgba(255,0,60,0.85), -3px 0 rgba(79,195,247,0.45), 0 0 40px rgba(224,0,58,0.9);
    }
    92% {
        transform: translate(-2px, 0);
        clip-path: polygon(0 42%, 100% 42%, 100% 52%, 0 52%);
        text-shadow: 5px 0 rgba(255,0,60,0.7), -5px 0 rgba(79,195,247,0.7), 0 0 40px rgba(224,0,58,0.9);
    }
    93% { transform: translate(0); clip-path: none; }
}

/* Japanese subtitle */
.hero-jp {
    font-family: var(--display);
    font-size: clamp(0.85rem, 1.8vw, 1.3rem);
    font-style: normal;
    color: var(--text-dim);
    letter-spacing: 7px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeRise 0.7s ease-out 1.7s forwards;
}

.hero-tagline {
    font-family: var(--body);
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: var(--text-dim);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.75rem;
    opacity: 0;
    animation: fadeRise 0.7s ease-out 1.9s forwards;
}

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

/* CTA buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeRise 0.7s ease-out 2.1s forwards;
}

/* Primary button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 2.4rem;
    background: var(--crimson);
    color: #fff;
    font-family: var(--display);
    font-weight: 700;
    font-style: italic;
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    border: 2px solid var(--crimson);
    position: relative;
    overflow: hidden;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    animation: btnGlow 2.2s ease-in-out 2.8s infinite;
}
@keyframes btnGlow {
    0%,100% { box-shadow: 0 0 15px rgba(224,0,58,0.45), 0 0 35px rgba(224,0,58,0.15); }
    50%      { box-shadow: 0 0 28px rgba(224,0,58,0.75), 0 0 60px rgba(224,0,58,0.35); }
}

/* Shimmer sweep on hover */
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.18) 50%, transparent 75%);
    transform: translateX(-120%);
    transition: transform 0.45s ease;
}
.btn-primary:hover::before { transform: translateX(120%); }

.btn-primary:hover {
    background: var(--crimson-hot);
    border-color: var(--crimson-hot);
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 6px 30px rgba(224,0,58,0.6) !important;
}

/* Secondary button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.95rem 1.9rem;
    background: transparent;
    color: var(--text-dim);
    font-family: var(--display);
    font-weight: 700;
    font-style: italic;
    font-size: 0.82rem;
    letter-spacing: 2px;
    border: 1px solid rgba(240,240,240,0.28);
    transition: all 0.25s;
}
.btn-secondary:hover {
    color: var(--text);
    border-color: rgba(240,240,240,0.65);
    background: rgba(255,255,255,0.05);
    transform: translateY(-3px);
}

.btn-large { padding: 1.15rem 2.8rem; font-size: 0.9rem; }

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(240,240,240,0.35);
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeRise 0.5s ease-out 2.8s forwards;
    z-index: 10;
    pointer-events: none;
}

.scroll-arrow {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--crimson), transparent);
    animation: scrollArrow 1.6s ease-in-out infinite;
}
@keyframes scrollArrow {
    0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
    49%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}


/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL — base state; JS adds .revealed
═══════════════════════════════════════════════════════════════ */

.reveal-section {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   SHARED SECTION PIECES
═══════════════════════════════════════════════════════════════ */

.section-label {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 4px;
    color: var(--crimson-hot);
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.85;
}


/* ═══════════════════════════════════════════════════════════════
   HOOK SECTION — rip-and-tear bg, series pitch
═══════════════════════════════════════════════════════════════ */

.section-hook {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hook-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.38) saturate(1.25);
    transform: scale(1.04);
    transition: transform 1.2s ease;
}
.section-hook.revealed .hook-bg { transform: scale(1.0); }

.hook-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(5,0,8,0.88) 30%, rgba(5,0,8,0.35) 70%, rgba(5,0,8,0.05) 100%),
        linear-gradient(to top,   rgba(5,0,8,0.7)  0%,  transparent 60%);
}

.hook-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.hook-inner { max-width: 600px; }

.hook-title {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(1.9rem, 4vw, 3.6rem);
    line-height: 1.07;
    color: var(--text);
    margin-bottom: 2rem;
    text-shadow: 0 0 35px rgba(224,0,58,0.35);
}
.hook-title em {
    color: var(--crimson-hot);
    font-style: italic;
    text-shadow:
        2px  0 rgba(255,0,60,0.8),
        -2px 0 rgba(79,195,247,0.4),
        0    0 30px rgba(224,0,58,0.9);
}

.hook-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dim);
    margin-bottom: 1.1rem;
    max-width: 570px;
}

.hook-quote {
    border-left: 3px solid var(--crimson);
    padding-left: 1.2rem;
    margin-top: 1.8rem;
    color: rgba(240,240,240,0.8) !important;
    font-style: italic;
    font-size: 1rem !important;
}


/* ═══════════════════════════════════════════════════════════════
   CAST SECTION
═══════════════════════════════════════════════════════════════ */

.section-cast {
    background: var(--void-mid);
    overflow: hidden;
}

/* Image strip at the top */
.cast-image-wrap {
    position: relative;
    width: 100%;
    max-height: 52vh;
    overflow: hidden;
}

.cast-image {
    width: 100%;
    display: block;
    filter: brightness(0.82) saturate(0.88);
    object-fit: cover;
    object-position: center top;
}

/* Fade into the dark section below */
.cast-image-fade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 25%, var(--void-mid) 100%),
        linear-gradient(to right,  var(--void-mid) 0%, transparent 12%, transparent 88%, var(--void-mid) 100%);
    pointer-events: none;
}

.cast-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 3rem 5rem;
}

.cast-title {
    font-family: var(--display);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.cast-card {
    padding: 1.5rem 1.4rem;
    border: 1px solid rgba(224,0,58,0.18);
    background: rgba(224,0,58,0.025);
    position: relative;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

/* Red accent bar on left edge */
.cast-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--crimson);
    transition: height 0.35s ease;
}
.cast-card:hover::before { height: 100%; }
.cast-card:hover {
    border-color: rgba(224,0,58,0.45);
    background: rgba(224,0,58,0.055);
    transform: translateY(-3px);
}

/* Featured card */
.cast-card--lead {
    border-color: rgba(224,0,58,0.38);
    background: rgba(224,0,58,0.065);
}
.cast-card--lead::before { height: 100%; }

.cast-name {
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}
.cast-name--lead {
    color: var(--crimson-hot);
    text-shadow: 0 0 14px rgba(224,0,58,0.5);
}

.cast-alias {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--crimson-hot);
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    opacity: 0.85;
}

.cast-card p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.55;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   GALLERY STRIP — three panels, expand on hover
═══════════════════════════════════════════════════════════════ */

.section-gallery { overflow: hidden; }

.gallery-strip {
    display: flex;
    height: 34vh;
    min-height: 190px;
}

.gallery-item {
    flex: 1;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) saturate(0.85);
    transition: flex 0.55s ease, filter 0.4s;
    position: relative;
    cursor: default;
}

/* Subtle black fade at edges */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5,0,8,0.25);
    transition: opacity 0.4s;
}
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 40px;
    right: 0;
    background: linear-gradient(to right, transparent, rgba(5,0,8,0.6));
}

.gallery-item:hover {
    flex: 2.2;
    filter: brightness(0.85) saturate(1.1);
}
.gallery-item:hover::before { opacity: 0; }

/* Divider line between panels */
.gallery-item + .gallery-item {
    border-left: 1px solid rgba(224,0,58,0.25);
}


/* ═══════════════════════════════════════════════════════════════
   READ / CTA SECTION
═══════════════════════════════════════════════════════════════ */

.section-read {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.read-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    filter: brightness(0.32) saturate(1.15);
}

.read-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to left,  rgba(5,0,8,0.70) 30%, rgba(5,0,8,0.15) 100%),
        linear-gradient(to top,   rgba(5,0,8,0.85) 0%,  transparent 55%),
        linear-gradient(to bottom,rgba(5,0,8,0.5)  0%,  transparent 40%);
}

.read-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
    text-align: right;
}

.read-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 6.5vw, 6rem);
    font-weight: 900;
    font-style: italic;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 50px rgba(224,0,58,0.45);
}

.read-subtitle {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 5px;
    color: var(--text-dim);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Chapter progress pills */
.read-status {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: flex-end;
}

.status-pill {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 0.35rem 0.85rem;
    border: 1px solid;
    text-transform: uppercase;
}

.status-done {
    color: #00e87a;
    border-color: rgba(0,232,122,0.35);
    background: rgba(0,232,122,0.05);
}
.status-wip {
    color: var(--gold);
    border-color: rgba(255,192,0,0.4);
    background: rgba(255,192,0,0.05);
    animation: wipBlink 1.6s ease-in-out infinite;
}
@keyframes wipBlink {
    0%,100% { opacity: 0.65; }
    50%     { opacity: 1; }
}

.read-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */

.home-footer {
    background: var(--void);
    border-top: 1px solid rgba(224,0,58,0.18);
    padding: 3.5rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 580px;
    margin: 0 auto;
}

.footer-jp {
    font-family: var(--display);
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: rgba(240,240,240,0.35);
    margin-bottom: 1.25rem;
}

.home-footer p {
    font-size: 0.83rem;
    color: rgba(240,240,240,0.35);
    line-height: 1.65;
    margin-bottom: 0.4rem;
}
.home-footer a {
    color: rgba(224,0,58,0.75);
    transition: color 0.2s;
}
.home-footer a:hover { color: var(--crimson-hot); }

.footer-copy {
    margin-top: 1.25rem;
    font-size: 0.72rem !important;
    color: rgba(240,240,240,0.2) !important;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

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

@media (max-width: 768px) {
    .home-nav .nav-container { padding: 1rem 1.5rem; }
    .home-nav .nav-menu { gap: 1.5rem; }

    .hero-content { padding: 80px 1.5rem 2rem; }
    .hero-cta     { flex-direction: column; align-items: flex-start; }
    .btn-primary, .btn-secondary { width: fit-content; }

    .hook-content { padding: 3.5rem 1.5rem; }

    .cast-content { padding: 2rem 1.5rem 3.5rem; }
    .cast-grid    { grid-template-columns: 1fr 1fr; gap: 1rem; }

    .read-content { padding: 3.5rem 1.5rem; text-align: left; }
    .read-status  { justify-content: flex-start; }
    .read-cta     { justify-content: flex-start; }

    .gallery-strip { height: 24vh; }
}

@media (max-width: 540px) {
    .cast-grid    { grid-template-columns: 1fr; }
    .gallery-strip { height: 20vh; min-height: 140px; }
    .home-nav .nav-menu { gap: 1rem; }
    .home-nav .nav-menu a { font-size: 0.7rem; letter-spacing: 1px; }
}
