/* ============================================
   RHETORIC STATES - COMPLETE STYLESHEET (FIXED)
   Punk Rock / Hardcore Aesthetic - No Duplicates
   ============================================ */

/* ============================================
   IMPORTS & VARIABLES
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:wght@300;400;500;600&family=Cormorant+Garamond:wght@400;500;600&family=Oswald:wght@300;400;500&display=swap');

:root {
    /* Colors */
    --bg: #0a0a0a;
    --bg-soft: #111111;
    --surface: #161616;
    --surface-hover: #202020;
    --text: #ededed;
    --text-muted: #aaaaaa;
    --text-faded: #666666;
    --accent: #cc2222;
    --accent-dark: #991111;
    --accent-light: #dd4444;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    
    /* Additional colors for compatibility */
    --ink: #0a0a0a;
    --deep: #111111;
    --char: #161616;
    --bone: #ededed;
    --cream: #e0d8c8;
    --faded: #888888;
    --ghost: #666666;
    --blood: #cc2222;
    --rust: #aa3311;
    --amber: #cc8844;
    --gold: #d4a63a;
    
    /* Typography */
    --font-display: 'Bebas Neue', 'Oswald', sans-serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    
    /* Layout */
    --container: 1280px;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-mono);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.divider {
    height: 1px;
    background: var(--border);
    width: 100%;
}

.section {
    padding: 100px 0;
}

/* ============================================
   TYPOGRAPHY - MAIN
   ============================================ */
.kicker {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 4px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-block;
    border-left: 2px solid var(--accent);
    padding-left: 10px;
    margin-bottom: 16px;
}

.section-h {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 48px;
    position: relative;
    display: inline-block;
}

.section-h::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.section-h em {
    font-style: normal;
    color: var(--accent);
    font-weight: 400;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 10px 24px;
    background: rgba(10, 10, 10, 0.98);
}

/* Di bagian .site-header atau .header-container */
.header-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    padding-left: 30px;     /* Tambahkan padding kiri */
}

.logo a {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 3px;
    font-weight: 400;
    text-decoration: none;
    color: var(--text);
    line-height: 1.2;
}

.logo a span:first-child {
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--accent);
    display: block;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.header-social {
    display: flex;
    gap: 20px;
}

.header-social a {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.header-social a:hover {
    color: var(--accent);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg);
    z-index: 999;
    transition: right 0.3s ease;
    padding: 80px 24px 24px;
    border-left: 1px solid var(--border);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-decoration: none;
    color: var(--text);
}

.mobile-nav-link:hover {
    color: var(--accent);
}

.mobile-social {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 24px;
}

.mobile-social a {
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    z-index: 1001;
    transition: width 0.1s linear;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 7, 5, 0.55);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-veil {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 5px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 5.5rem);
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-location {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 2px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-block;
    padding: 12px 32px;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--accent);
    color: var(--bg);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--accent);
}

/* ============================================
   MANIFESTO - 2 KOLOM
   ============================================ */
#manifesto {
    padding: 100px 0;
}

.manifesto-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.manifesto-text {
    text-align: left;
}

.manifesto-lines {
    margin-top: 20px;
}

.manifesto-line {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 6px 0;
}

.manifesto-line:nth-child(3),
.manifesto-line:nth-child(4),
.manifesto-line:nth-child(5) {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: var(--text-muted);
    letter-spacing: 2px;
}

.manifesto-since {
    margin-top: 40px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--accent);
}

.manifesto-image img {
    width: 100%;
    height: auto;
    filter: grayscale(0.3);
    border: 1px solid var(--border);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px dashed var(--border);
    color: var(--text-muted);
}

/* ============================================
   WHY SECTION
   ============================================ */
#why {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-item {
    background: var(--surface);
    padding: 30px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.why-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 20px;
}

.why-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 15px;
}

.why-item p {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   20 YEARS SECTION
   ============================================ */
#twenty {
    padding: 100px 0;
    position: relative;
    background-attachment: fixed !important;
}

#twenty .wrap {
    position: relative;
    z-index: 2;
}

.twenty-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 60px;
    align-items: center;
}

.twenty-num {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 7rem);
    font-weight: 400;
    color: var(--accent);
    line-height: 0.8;
}

.twenty-text .kicker {
    margin-bottom: 20px;
}

.twenty-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.twenty-text p {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pull-quote {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 400;
    padding-left: 20px;
    border-left: 2px solid var(--accent);
}

/* ============================================
   CREW SECTION
   ============================================ */
#crew {
    padding: 100px 0;
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.crew-card {
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.crew-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.crew-photo {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.crew-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.crew-card:hover .crew-photo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.crew-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent);
}

.crew-info {
    padding: 24px;
}

.crew-role {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.crew-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
}

.crew-quote {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text-muted);
}

.crew-instruments {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 300;
    color: var(--text-faded);
    margin-top: 12px;
}

/* ============================================
   CARRIED SECTION - GRID 5 FOTO
   ============================================ */
#carried {
    padding: 100px 0;
}

.carried-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: 2px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

.carried-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.carried-photo-item {
    text-align: center;
}

.carried-photo {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.7);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.carried-photo:hover {
    filter: grayscale(0);
    transform: scale(1.02);
}

.carried-photo span {
    font-size: 2.5rem;
    opacity: 0.5;
}

.carried-photo-label {
    margin-top: 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ============================================
   LEGACY TIMELINE
   ============================================ */
#legacy {
    padding: 100px 0;
}

.legacy-header {
    margin-bottom: 40px;
}

.timeline {
    display: flex;
    flex-direction: column;
}

.tl-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.tl-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent);
}

.tl-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 8px;
}

.tl-content p {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--text-muted);
}

.timeline-image {
    margin-top: 15px;
    max-width: 250px;
    border: 1px solid var(--border);
    filter: grayscale(80%);
    transition: var(--transition);
    cursor: pointer;
}

.timeline-image:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* ============================================
   ARCHIVE SECTION
   ============================================ */
#archive {
    padding: 100px 0;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.archive-cell {
    background: var(--surface);
    padding: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.archive-cell:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.archive-cell img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: grayscale(80%);
    transition: var(--transition);
}

.archive-cell:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.archive-placeholder {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    background: var(--bg-soft);
    color: var(--accent);
}

.archive-caption {
    margin-top: 15px;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 2px;
    font-weight: 300;
    color: var(--text-muted);
}

/* ============================================
   PHILOSOPHY TICKER
   ============================================ */
#philosophy {
    padding: 40px 0;
    overflow: hidden;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: tickerScroll 25s linear infinite;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 3px;
    font-weight: 400;
}

.ticker span {
    margin: 0 15px;
}

.ticker .sep {
    color: var(--accent);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker:hover {
    animation-play-state: paused;
}

/* ============================================
   DOCUMENTARY SECTION
   ============================================ */
#documentary {
    padding: 100px 0;
    text-align: center;
}

.doc-subtitle {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.doc-frame {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.doc-frame:hover {
    border-color: var(--accent);
}

.doc-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doc-placeholder {
    text-align: center;
}

.doc-placeholder span:first-child {
    font-size: 3rem;
    display: block;
}

.doc-placeholder span:last-child {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--accent);
    display: block;
    margin-top: 15px;
}

.doc-caption {
    margin-top: 20px;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--text-faded);
}

/* ============================================
   MEMORY / ALWAYS WITH US
   ============================================ */
#memory {
    padding: 100px 0;
    text-align: center;
    position: relative;
    background-attachment: fixed !important;
}

#memory .wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.memory-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.memory-title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.memory-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--text);
    margin-bottom: 3rem;
}

.memory-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.memory-thumb {
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s;
}

.memory-thumb:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}

.memory-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.6);
    transition: filter 0.3s;
}

.memory-thumb img:hover {
    filter: grayscale(0);
}

.memory-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.memory-thumb-placeholder span {
    font-size: 2.5rem;
    opacity: 0.5;
}

.memory-quote {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-top: 3rem;
}

/* ============================================
   JOIN THE MOVEMENT
   ============================================ */
#movement {
    padding: 100px 0;
    text-align: center;
}

.movement-label {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.movement-form {
    display: flex;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto 30px;
}

.movement-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.7rem;
}

.movement-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.movement-form button {
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    border: none;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: 400;
    transition: var(--transition);
}

.movement-form button:hover {
    background: var(--accent-dark);
}

.movement-note {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 1px;
    color: var(--text-faded);
}

/* ============================================
   FINALE SECTION - FONT SERAGAM
   ============================================ */
#finale {
    background: var(--bg-soft);
    padding: 0;
}

.finale-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
}

.finale-image {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.finale-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
}

.finale-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-right: 1px solid var(--border);
}

.finale-image-placeholder span {
    font-size: 4rem;
    opacity: 0.3;
}

.finale-text {
    padding: 4rem;
    text-align: left;
}

.finale-lines {
    margin-bottom: 2rem;
}

.finale-lines div {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.9;
    color: var(--text-muted);
}

.finale-lines div strong {
    font-family: var(--font-serif);
    color: var(--text);
    font-weight: 600;
}

.finale-logo {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.05em;
    color: var(--text);
    margin: 2rem 0 1rem;
}

.finale-logo span {
    font-family: var(--font-display);
    color: var(--accent);
}

.finale-years {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.finale-statement {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 2rem;
}



.finale-thanks {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    color: var(--text-muted);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 8px;
}

.footer-brand p {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 2px;
    font-weight: 300;
    color: var(--text-muted);
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--text-faded);
    text-align: right;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.r {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.r.show {
    opacity: 1;
    transform: translateY(0);
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-container {
    max-width: 150px;
    padding: 15px;
}

.preloader-years {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 25px;
}

.pre-year {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 400;
    color: #ededed;
    opacity: 0;
    transform: translateY(10px);
    animation: slideUpFade 0.3s ease forwards;
}

.pre-arrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    color: #cc2222;
    opacity: 0;
    transform: translateY(5px);
    animation: slideUpFade 0.25s ease forwards;
}

.final-year {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #cc2222;
    line-height: 1.2;
    margin-top: 5px;
}

.preloader-line {
    width: 0;
    height: 1.5px;
    background: #cc2222;
    margin: 0 auto;
    animation: lineGrow 0.6s ease-out forwards;
    animation-delay: 2.8s;
}

.pre-year:nth-child(1) { animation-delay: 0.05s; }
.pre-arrow:nth-child(2) { animation-delay: 0.10s; }
.pre-year:nth-child(3) { animation-delay: 0.15s; }
.pre-arrow:nth-child(4) { animation-delay: 0.20s; }
.pre-year:nth-child(5) { animation-delay: 0.25s; }
.pre-arrow:nth-child(6) { animation-delay: 0.30s; }
.pre-year:nth-child(7) { animation-delay: 0.35s; }
.pre-arrow:nth-child(8) { animation-delay: 0.40s; }
.pre-year:nth-child(9) { animation-delay: 0.45s; }
.pre-arrow:nth-child(10) { animation-delay: 0.50s; }
.pre-year:nth-child(11) { animation-delay: 0.55s; }
.pre-arrow:nth-child(12) { animation-delay: 0.60s; }
.pre-year:nth-child(13) { animation-delay: 0.65s; }
.pre-arrow:nth-child(14) { animation-delay: 0.70s; }
.pre-year:nth-child(15) { animation-delay: 0.75s; }

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrow {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 60px;
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .why-grid,
    .crew-grid,
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .carried-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .memory-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav,
    .header-social {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .site-header {
        padding: 12px 20px;
    }
    
    .why-grid,
    .crew-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }
    
    .manifesto-split,
    .twenty-grid,
    .finale-split {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .carried-grid {
        grid-template-columns: 1fr;
    }
    
    .memory-thumbnails {
        grid-template-columns: 1fr;
    }
    
    .twenty-num {
        text-align: center;
    }
    
    .tl-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .tl-year {
        text-align: center;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copy {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .wrap {
        padding: 0 16px;
    }
    
    .finale-text {
        padding: 3rem;
        text-align: center;
    }
    
    .finale-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-h1 {
        letter-spacing: 2px;
    }
    
    .manifesto-line {
        letter-spacing: 0.5px;
    }
    
    .finale-text {
        padding: 2rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .progress-bar,
    .hero-scroll,
    .mobile-nav-toggle,
    .footer-links,
    .movement-form {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ============================================
   SIDEBAR NUMBERS - FIXED LEFT
   ============================================ */
.sidebar-numbers {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-numbers a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    font-weight: 400;
    color: #555;
    text-decoration: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.sidebar-numbers a:hover {
    color: #cc2222;
    letter-spacing: 3px;
}

.sidebar-numbers a.active {
    color: #cc2222;
    font-weight: 500;
}

/* Sembunyikan di mobile */
@media (max-width: 768px) {
    .sidebar-numbers {
        display: none;
    }
}

/* ============================================
   SIDEBAR NUMBERS - FIXED LEFT VERTICAL
   ============================================ */
.sidebar-numbers {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-numbers a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #666;
    text-decoration: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: all 0.3s ease;
    padding: 8px 0;
    line-height: 1.2;
}

.sidebar-numbers a:hover {
    color: #cc2222;
    letter-spacing: 3px;
}

.sidebar-numbers a.active {
    color: #cc2222;
    font-weight: 500;
}

/* Sembunyikan di layar kecil */
@media (max-width: 900px) {
    .sidebar-numbers {
        display: none;
    }
}

/* Hero Logo */
.hero-logo {
    max-width: 120%;
    width: auto;
    height: auto;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive untuk logo */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 90%;
    }
}

/* Why Items dengan Foto */
.why-item {
    background: #111;
    padding: 0;
    border: 1px solid #333;
    transition: all 0.3s ease;
    overflow: hidden;
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: #cc2222;
}

.why-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: filter 0.3s, transform 0.3s;
}

.why-item:hover .why-image img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.why-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin: 15px 20px 10px;
    color: #fff;
}

.why-item p {
    font-family: monospace;
    font-size: 0.75rem;
    color: #aaa;
    margin: 0 20px 20px;
    line-height: 1.5;
}

.why-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #cc2222;
    padding: 20px 20px 0 20px;
}

/* ============================================
   FOOTER STYLE - FONT SERAGAM
   ============================================ */
#footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 166, 58, 0.2);
    padding: 50px 0 30px;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: #ededed;
}

.footer-left em {
    font-style: normal;
    color: #cc2222;
}

.footer-mid {
    text-align: center;
}

.social-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 15px;
}

.social-btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 400;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.social-btn:hover {
    color: #cc2222;
}

.footer-copy {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: #555;
}

.footer-right {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 1px;
    line-height: 1.8;
    color: #666;
    text-align: right;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-wrap {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .social-row {
        gap: 15px;
    }
    
    .social-btn {
        font-size: 0.6rem;
    }
    
    .footer-left {
        font-size: 1.3rem;
    }
}

/* Announcement Bar */
.announcement-bar {
    position: relative;
    z-index: 1001;
}

.announcement-bar button:hover {
    opacity: 0.8;
}

/* Announcement Bar - Di Atas Header */
.top-announcement {
    position: relative;
    z-index: 1001;
}

/* Geser header ke bawah agar tidak ketutupan */
.site-header {
    top: auto;
    position: fixed;
}

/* Jika ada announcement, header turun */
.top-announcement + .site-header {
    top: 38px;
}

/* Atau pakai cara lain: beri padding-top di body */
body.has-announcement {
    padding-top: 38px;
}

.top-announcement {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
}

/* Responsive */
@media (max-width: 768px) {
    .top-announcement {
        font-size: 0.55rem;
        padding: 6px;
    }
    .top-announcement + .site-header {
        top: 32px;
    }
}