* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-deep: #0a1410;
    --forest-dark: #1a2820;
    --moss-green: #2d4a3a;
    --aged-gold: #d4af37;
    --faded-gold: #a89050;
    --paper-old: #e8dcc4;
    --text-light: #f5f1e8;
    --text-dim: #b8b0a0;
}

body {
    background: var(--forest-deep);
    color: var(--text-light);
    font-family: 'Libre Baskerville', serif;
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1000;
}

body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="300" height="300" filter="url(%23noise)" opacity="0.05"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 999;
}

/* ── HEADER ─────────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(10, 20, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 100;
    padding: 1rem 2rem;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 70px;
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a.active { color: var(--aged-gold); }

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 1px;
    background: var(--aged-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--aged-gold); }

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--aged-gold);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── CREATOR HERO ────────────────────────────── */
.creator-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest-dark) 55%, var(--forest-deep) 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 100px;
}

.hero-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    width: clamp(320px, 45vw, 600px);
    height: clamp(320px, 45vw, 600px);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.08);
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-name-bg {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -62%);
    font-family: 'Cinzel', serif;
    font-size: clamp(10px, 5.2vw, 130px);
    font-weight: 700;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 2;
    line-height: 1;
    opacity: 0.9;
}

.hero-photo-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: clamp(260px, 30vw, 460px);
}

.hero-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 -8px 30px rgba(212, 175, 55, 0.06))
            drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
}

.hero-label-left {
    position: absolute;
    left: clamp(1.5rem, 5vw, 5rem);
    top: 60%;
    transform: translateY(-50%);
    z-index: 4;
}

.hero-label-right {
    position: absolute;
    right: clamp(1.5rem, 5vw, 5rem);
    top: 60%;
    transform: translateY(-50%);
    z-index: 4;
    text-align: right;
}

.hero-label-left span,
.hero-label-right span {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(0.7rem, 1.2vw, 0.95rem);
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1;
}

.hero-label-left .label-divider,
.hero-label-right .label-divider {
    display: block;
    width: 30px;
    height: 1px;
    background: rgba(212, 175, 55, 0.4);
    margin: 10px 0;
}

.hero-label-right .label-divider {
    margin-left: auto;
}

/* ── HERO BOTTOM — Desktop: hanya deskripsi rata tengah ── */
.hero-bottom {
    position: relative;
    z-index: 5;
    padding: 6rem clamp(1.5rem, 6vw, 6rem) 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(0deg, var(--forest-deep) 55%, transparent);
}

.hero-bio {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-dim);
    text-align: center;
    max-width: 560px;
}

.hero-name {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--aged-gold);
    text-align: center;
    max-width: 560px;
}

.hero-fade-left {
    position: absolute;
    top: 0; left: 0;
    width: clamp(120px, 18vw, 260px);
    height: 100%;
    background: linear-gradient(90deg, rgba(10,20,16,0.5), transparent);
    pointer-events: none;
    z-index: 2;
}

.hero-fade-right {
    position: absolute;
    top: 0; right: 0;
    width: clamp(120px, 18vw, 260px);
    height: 100%;
    background: linear-gradient(270deg, rgba(10,20,16,0.5), transparent);
    pointer-events: none;
    z-index: 2;
}

/* ── PORTFOLIO SECTION ───────────────────────── */
.portfolio-section {
    padding: 6rem 2rem;
    background: var(--forest-deep);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--aged-gold);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.section-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.portfolio-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.portfolio-item {
    background: linear-gradient(135deg, rgba(42, 74, 58, 0.3), rgba(26, 40, 32, 0.5));
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.portfolio-item:hover {
    border-color: var(--aged-gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.portfolio-item:hover::before { opacity: 1; }

/* Rasio 16:9 untuk screenshot desktop */
.portfolio-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--moss-green);
    background-size: cover;
    background-position: center top;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.portfolio-content {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.portfolio-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--aged-gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.portfolio-description {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-dim);
    flex: 1;
}

.portfolio-play-btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.6rem 1.4rem;
    background: var(--aged-gold);
    color: var(--forest-deep);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    z-index: 3;
}

.portfolio-play-btn:hover {
    background: var(--faded-gold);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.portfolio-coming-soon {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--text-dim);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    align-self: flex-start;
}

.no-portfolio {
    text-align: center;
    color: var(--text-dim);
    font-style: italic;
    padding: 3rem;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
    background: var(--forest-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
}

/* ── RESPONSIVE WIDE 1400px+ ────────────────── */
@media (min-width: 1400px) {
    .nav {
        max-width: 1600px;
    }

    .portfolio-section {
        padding: 7rem 4rem;
    }

    .portfolio-grid {
        max-width: 1400px;
        gap: 3rem;
    }

    .portfolio-name { font-size: 1.5rem; }
    .portfolio-description { font-size: 1rem; }
}

/* ── RESPONSIVE 900px ───────────────────────── */
@media (max-width: 900px) {
    .hero-label-left,
    .hero-label-right {
        display: none;
    }

    .hero-photo-wrap {
        width: clamp(200px, 50vw, 300px);
    }

    .hero-name-bg {
        font-size: clamp(32px, 9vw, 60px);
        transform: translate(-50%, -58%);
        opacity: 0.15;
    }

    .hero-bio {
        font-size: 0.9rem;
    }
}

/* ── RESPONSIVE 768px (smartphone) ──────────── */
@media (max-width: 768px) {
    .header { padding: 0.8rem 1.2rem; }

    .hamburger { display: flex; }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: calc(100% + 0.8rem);
        right: 0; left: 0;
        background: rgba(10, 20, 16, 0.98);
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        backdrop-filter: blur(12px);
        z-index: 150;
    }

    .nav-menu.open { display: flex; }

    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        letter-spacing: 0.15em;
    }

    .nav-menu a:last-child { border-bottom: none; }
    .nav-menu a::after { display: none; }

    /* Hero: layout stacked rapi */
    .creator-hero {
        padding-top: 80px;
        min-height: auto;
        justify-content: flex-start;
        flex-direction: column;
    }

    .hero-name-bg {
        font-size: clamp(28px, 10vw, 46px);
        top: 42%;
        opacity: 0.1;
        transform: translate(-50%, -50%);
        letter-spacing: 0.04em;
    }

    .hero-photo-wrap {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: clamp(160px, 55vw, 240px);
        margin: 2rem auto 0;
        display: block;
        z-index: 3;
    }

    .hero-circle {
        width: clamp(200px, 60vw, 300px);
        height: clamp(200px, 60vw, 300px);
        top: 30%;
    }

    .hero-bottom {
        padding: 1.5rem 1.2rem 2.5rem;
    }

    .hero-bio {
        font-size: 0.88rem;
        line-height: 1.8;
        text-align: center;
        max-width: 100%;
    }

    /* Portfolio */
    .portfolio-section { padding: 3.5rem 1rem; }
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-content { padding: 1.25rem; }
    .portfolio-name { font-size: 1.2rem; }
    .portfolio-description { font-size: 0.88rem; }
}

/* ── RESPONSIVE 480px (smartphone kecil) ──── */
@media (max-width: 480px) {
    .header { padding: 0.7rem 1rem; }

    .logo img { height: 50px; }

    .hero-name-bg {
        font-size: clamp(22px, 9vw, 36px);
        opacity: 0.08;
    }

    .hero-photo-wrap {
        width: clamp(140px, 50vw, 200px);
        margin-top: 1.5rem;
    }

    .hero-bottom {
        padding: 1.2rem 1rem 2rem;
    }

    .hero-bio {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .portfolio-content { padding: 1rem; }
    .portfolio-name { font-size: 1.1rem; margin-bottom: 0.6rem; }

    footer { padding: 2rem 1rem; }
    .footer-text { font-size: 0.78rem; }
}
/* ── MODAL OVERLAY ───────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-overlay.active { display: flex; }

.modal-box {
    background: #111f18;
    border: 1px solid rgba(212,175,55,0.35);
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,0.3) transparent;
}

.modal-close {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(0,0,0,0.75);
    border: 1px solid #d4af37;
    color: #d4af37;
    width: 32px; height: 32px;
    cursor: pointer;
    font-size: 14px;
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.modal-close:hover { background: rgba(212,175,55,0.25); color: #fff; }

.modal-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-bottom: 2px solid rgba(212,175,55,0.3);
}
.modal-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.modal-badge-jenis {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(0,0,0,0.75);
    border: 1px solid #d4af37;
    color: #d4af37;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.modal-body { padding: 1.5rem; }

.modal-judul {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 0;
}
.meta-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    padding: 10px 12px;
}
.meta-full { grid-column: span 2; }
.meta-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(184,176,160,0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.meta-value {
    font-size: 13px;
    color: #f5f1e8;
    font-weight: 500;
}

.modal-divider {
    border: none;
    border-top: 1px solid rgba(212,175,55,0.15);
    margin: 1rem 0;
}
.modal-section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(184,176,160,0.5);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.modal-deskripsi {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(184,176,160,0.9);
    margin-bottom: 1.25rem;
}

/* Tim expand */
.tim-member {
    border: 1px solid rgba(212,175,55,0.2);
    margin-bottom: 6px;
    overflow: hidden;
}
.tim-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
    border-left: 2px solid rgba(212,175,55,0.3);
    transition: background 0.2s;
}
.tim-header:hover { background: rgba(212,175,55,0.05); }
.tim-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px; color: #d4af37;
    flex-shrink: 0;
}
.tim-name {
    font-size: 13px;
    color: #f5f1e8;
    font-weight: 500;
    flex: 1;
}
.tim-role-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(184,176,160,0.6);
}
.tim-chevron {
    font-size: 10px;
    color: rgba(212,175,55,0.5);
    transition: transform 0.2s;
    margin-left: 6px;
}

.tim-detail {
    display: none;
    padding: 10px 14px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(212,175,55,0.1);
}
.tim-detail.open { display: block; }
.tim-kontak-row {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    align-items: center;
}
.tim-kontak-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(184,176,160,0.5);
    width: 60px;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}
.tim-kontak-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #d4af37;
    text-decoration: none;
    border-bottom: 1px solid rgba(212,175,55,0.3);
    transition: color 0.2s;
}
.tim-kontak-link:hover { color: #f5f1e8; }

/* Modal footer */
.modal-footer {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 0.25rem;
}
.modal-lihat-btn {
    background: #d4af37;
    color: #0a1410;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 9px 20px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}
.modal-lihat-btn:hover { background: #a89050; }
.modal-tutup-btn {
    background: transparent;
    color: rgba(184,176,160,0.7);
    border: 1px solid rgba(184,176,160,0.25);
    padding: 9px 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.2s;
}
.modal-tutup-btn:hover { border-color: rgba(212,175,55,0.4); color: #d4af37; }

/* Kartu bisa diklik */
.portfolio-item { cursor: pointer; }
.portfolio-play-btn { cursor: pointer; }

.extra-section {
  padding: 6rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}
.extra-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* KONTAK */
.kontak-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.kontak-item {
  background: rgba(30, 30, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 2.2rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.kontak-item:hover {
  border-color: var(--aged-gold);
  background: rgba(212, 175, 55, 0.06);
  transform: translateY(-3px);
}
.kontak-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aged-gold);
  flex-shrink: 0;
}
.kontak-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.kontak-val {
  font-size: 0.88rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.15rem;
}