/* ===== Reset & Variables ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #0a0a1a;
    --bg-dark: #0d0d2b;
    --bg-card: rgba(15, 15, 45, 0.7);
    --bg-card-hover: rgba(25, 25, 65, 0.8);
    --accent: #7b68ee;
    --accent-light: #9d8cff;
    --accent-glow: rgba(123, 104, 238, 0.3);
    --accent2: #00bcd4;
    --accent2-light: #4dd0e1;
    --star-bright: #e8e0ff;
    --text: #e0dce8;
    --text-light: #a8a0b8;
    --text-muted: #6d6580;
    --border: rgba(123, 104, 238, 0.15);
    --border-light: rgba(123, 104, 238, 0.08);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(123, 104, 238, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --font-main: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    --font-en: 'Cormorant Garamond', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-deep);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.8;
}

/* Parallax Background */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Base dark overlay - always covers */
.parallax-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Drifting lighter patches over the base */
.parallax-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 2;
    background:
        radial-gradient(ellipse 1200px 800px at 30% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.15) 100%),
        radial-gradient(ellipse 1000px 700px at 70% 60%, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.15) 100%),
        radial-gradient(ellipse 900px 1000px at 50% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.15) 100%);
    animation: drift 10s ease-in-out infinite alternate;
}

@keyframes drift {
    0% {
        transform: translate(0%, 0%) rotate(0deg);
    }
    33% {
        transform: translate(5%, -3%) rotate(1deg);
    }
    66% {
        transform: translate(-3%, 5%) rotate(-1deg);
    }
    100% {
        transform: translate(3%, 2%) rotate(0.5deg);
    }
}

/* PC: original orientation, fill screen */
.parallax-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile: rotate 90deg right, cover full viewport */
@media (max-width: 768px) {
    .parallax-bg img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
        width: 100vh;
        height: 100vw;
        min-width: 100vh;
        min-height: 100vw;
        object-fit: cover;
    }
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 26, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: block;
    position: relative;
    height: 70px;
}

.nav-logo-default,
.nav-logo-hover {
    height: 66px;
    width: 159px;
    margin-top: 2px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-logo-default {
    display: block;
}

.nav-logo-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.nav-logo:hover .nav-logo-default {
    opacity: 0;
}

.nav-logo:hover .nav-logo-hover {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-link {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-light);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    padding: 70px 24px 60px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-visual {
    margin-bottom: 40px;
}

.hero-image-frame {
    width: 280px;
    height: 360px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    position: relative;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    opacity: 0.3;
    z-index: -1;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.1), rgba(0, 188, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.2em;
}

.hero-name {
    margin-bottom: 16px;
}

.hero-name-en {
    display: block;
    font-family: var(--font-en);
    font-size: 52px;
    font-weight: 300;
    color: var(--star-bright);
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.hero-name-jp {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.3em;
    margin-top: 8px;
}

.hero-tagline {
    font-family: var(--font-en);
    font-size: 15px;
    color: var(--accent-light);
    letter-spacing: 0.2em;
    font-weight: 400;
}

/* ===== Slide Banner ===== */
.slide-wrap {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    cursor: grab;
}

.slide-wrap.dragging {
    cursor: grabbing;
}

.slide-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide-track.no-transition {
    transition: none;
}

.slide-item {
    flex-shrink: 0;
    width: 48%;
    padding: 0 8px;
    display: block;
    cursor: grab;
}

.slide-item[data-href] {
    cursor: grab;
}

.dragging .slide-item {
    cursor: grabbing;
}

.slide-item img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

/* ===== Booth Link ===== */
.booth-link {
    text-align: center;
    margin-top: 20px;
}

.booth-link img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.booth-link img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .slide-item {
        width: 85%;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-indicator span {
    font-family: var(--font-en);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ===== Schedule Section ===== */
.schedule-list {
    max-width: 700px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.schedule-item:first-child {
    border-top: 1px solid var(--border-light);
}

.schedule-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.schedule-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-date {
    font-size: 14px;
    color: var(--accent-light);
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    min-width: 90px;
}

.schedule-info {
    flex: 1;
}

.schedule-title {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    transition: color 0.3s ease;
}

a.schedule-title:hover {
    color: var(--accent-light);
}

.schedule-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== Section Common ===== */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-en {
    font-family: var(--font-en);
    font-size: 42px;
    font-weight: 300;
    color: var(--star-bright);
    letter-spacing: 0.1em;
    display: block;
    position: relative;
}

.section-title-en::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 16px auto 0;
}

.works-summary {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    line-height: 2;
    margin-top: 20px;
}

.works-summary-note {
    font-size: 13px;
    opacity: 0.6;
}

.section-more {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    display: inline-block;
    padding: 10px 32px;
    border: 1px solid var(--accent);
    color: var(--accent-light);
    font-family: var(--font-en);
    font-size: 13px;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.btn-more:hover {
    border-color: var(--border);
    color: var(--text-light);
    box-shadow: none;
}

.section-empty {
    text-align: center;
    color: var(--text-muted);
    font-family: var(--font-en);
    font-size: 16px;
    letter-spacing: 0.1em;
    padding: 40px 0;
}

/* ===== News Section ===== */
.news-list {
    max-width: 700px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.news-item:first-child {
    border-top: 1px solid var(--border-light);
}

.news-item:hover {
    padding-left: 8px;
}

.news-item:hover .news-text {
    color: var(--accent-light);
}

.news-date {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.news-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* ===== Profile Section ===== */
.profile-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.profile-image {
    flex-shrink: 0;
    width: 280px;
}

.profile-avatar {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.profile-info {
    flex: 1;
}

.profile-name-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.profile-name-logo img {
    height: 72px;
    width: auto;
}

.btn-guideline {
    font-size: 14.4px;
    padding: 7px 24px;
}

/* Full-body avatar */
.profile-avatar-full {
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
}

.profile-text-content {
    margin-top: 8px;
    line-height: 1.9;
    font-size: 14px;
    color: var(--text);
}

.profile-text-content h4 {
    font-size: 16px;
    color: #c9a84c;
    margin-top: 28px;
    margin-bottom: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.profile-text-content h4:first-child {
    margin-top: 0;
}

.profile-text-content p {
    margin-bottom: 8px;
}

.profile-text-content ul {
    list-style: none;
    margin-bottom: 12px;
}

.profile-text-content ul li {
    padding: 2px 0;
}

.profile-text-content a {
    color: var(--accent2-light);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.profile-text-content a:hover {
    border-bottom-color: var(--accent2-light);
}

/* ===== Profile Intro Section ===== */
.profile-intro-section {
    position: relative;
    overflow: hidden;
}

.profile-intro-bg {
    position: absolute;
    inset: 0;
    background: url('images/reimei.webp') center/auto 100% no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.profile-intro-section .container {
    position: relative;
    z-index: 1;
}

.profile-intro {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 14px;
    color: var(--text);
}

.profile-intro h4 {
    font-size: 16px;
    color: #c9a84c;
    margin-top: 28px;
    margin-bottom: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.profile-intro h4:first-child {
    margin-top: 0;
}

.profile-intro p {
    margin-bottom: 8px;
}

.profile-intro ul {
    list-style: none;
    margin-bottom: 12px;
}

.profile-intro ul li {
    padding: 2px 0;
}

.profile-intro ul.profile-details li {
    padding: 2px 0;
}

.profile-intro a {
    color: var(--accent2-light);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.profile-intro a:hover {
    border-bottom-color: var(--accent2-light);
}


/* ===== Discography Slider ===== */
.disco-slide-wrap {
    position: relative;
    overflow: hidden;
    cursor: grab;
}

#discography .container {
    max-width: 100%;
    padding: 0;
}

.disco-slide-wrap.dragging {
    cursor: grabbing;
}

.disco-slide-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.disco-slide-track.no-transition {
    transition: none !important;
}

.disco-slide-item {
    flex: 0 0 280px;
    max-width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    user-select: none;
}

.disco-slide-item:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-glow);
}

.disco-slide-item img {
    width: 100%;
    display: block;
    pointer-events: none;
}

.disco-cover-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.08), rgba(0, 188, 212, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: var(--font-en);
    font-size: 13px;
    letter-spacing: 0.15em;
}

.disco-info {
    padding: 16px;
    text-align: center;
}

.disco-info h3 {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-main);
    color: var(--text);
    margin-bottom: 4px;
}

.disco-date {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-en);
}

@media (max-width: 768px) {
    .disco-slide-item {
        flex: 0 0 220px;
        max-width: 220px;
    }
}

/* ===== Sample Section ===== */
.sample-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sample-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.sample-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-glow);
}

.sample-icon {
    font-size: 28px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.sample-card h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.sample-category {
    font-size: 12px;
    color: var(--accent-light);
    font-family: var(--font-en);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.sample-card audio {
    width: 100%;
    height: 32px;
    opacity: 0.7;
}

/* ===== Work Inquiries Section ===== */
.inquiries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.inquiry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 36px;
    transition: all 0.3s ease;
}

.inquiry-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-glow);
}

.inquiry-icon {
    font-size: 32px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.inquiry-card h3 {
    font-family: var(--font-en);
    font-size: 22px;
    font-weight: 500;
    color: var(--star-bright);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.inquiry-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.inquiry-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inquiry-list li {
    padding: 6px 14px;
    font-size: 12px;
    color: var(--accent-light);
    border: 1px solid var(--border);
    border-radius: 20px;
}

/* ===== Works Page ===== */
.works-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.works-tab {
    background: none;
    border: none;
    padding: 14px 36px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.works-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.3s;
}

.works-tab:hover {
    color: var(--text);
}

.works-tab.active {
    color: var(--star-bright);
}

.works-tab.active::after {
    background: #c9a84c;
}

.works-block {
    display: none;
}

.works-block.active {
    display: block;
}

.works-sample-link {
    text-align: center;
    margin-bottom: 36px;
}

.works-body {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 14px;
    color: var(--text);
}

.works-body h4 {
    font-size: 16px;
    color: #c9a84c;
    margin-top: 36px;
    margin-bottom: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.works-body h4:first-child {
    margin-top: 0;
}

.works-body h5 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-top: 16px;
    margin-bottom: 8px;
}

.works-body p {
    margin-bottom: 10px;
}

.works-body ul {
    list-style: none;
    margin-bottom: 14px;
}

.works-body ul li {
    padding: 3px 0 3px 16px;
    position: relative;
}

.works-body ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #c9a84c;
}

.works-body a {
    color: var(--accent2-light);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.works-body a:hover {
    border-bottom-color: var(--accent2-light);
}

.works-body .works-note,
.works-note {
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .works-tab {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ===== Works Section ===== */
.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.work-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: var(--shadow-glow);
}

.work-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.work-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.08), rgba(0, 188, 212, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.15em;
}

.work-info {
    padding: 14px;
}

.work-info h3 {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.4;
}

.work-role {
    font-size: 12px;
    color: var(--accent-light);
}

.work-year {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-en);
}

/* ===== Contact Section ===== */
.contact-box {
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cf-group label {
    font-size: 13px;
    color: var(--text-light);
}

.cf-req {
    color: #c9a84c;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
    background: rgba(15, 15, 45, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--text);
    transition: border-color 0.3s;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    outline: none;
    border-color: #c9a84c;
}

.cf-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a0b8' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.cf-group textarea {
    resize: vertical;
}

.cf-actions {
    text-align: center;
    margin-top: 8px;
}

.contact-error {
    background: rgba(220, 60, 60, 0.15);
    border: 1px solid rgba(220, 60, 60, 0.3);
    color: #ff8888;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-done {
    text-align: center;
    padding: 40px 20px;
    color: var(--text);
    line-height: 2;
    font-size: 15px;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 600;
    color: var(--star-bright);
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-en);
    letter-spacing: 0.05em;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-en);
    letter-spacing: 0.05em;
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 26, 0.97);
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        padding-top: 80px;
        padding-right: 32px;
        gap: 4px;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.4s; }

    .nav-link {
        font-size: 22px;
        padding: 12px 0;
    }

    .hero-name-en {
        font-size: 36px;
    }

    .hero-image-frame {
        width: 220px;
        height: 280px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title-en {
        font-size: 32px;
    }

    .profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-image {
        width: 75vw;
        max-width: 320px;
    }

    .profile-table th,
    .profile-table td {
        text-align: center;
    }

    .profile-sns {
        justify-content: center;
    }

    .sample-grid {
        grid-template-columns: 1fr;
    }

    .inquiries-grid {
        grid-template-columns: 1fr;
    }

    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-name-en {
        font-size: 28px;
    }

    .hero-image-frame {
        width: 180px;
        height: 230px;
    }

    .section-title-en {
        font-size: 26px;
    }


    .works-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ===== News Page ===== */
.page-hero {
    padding: 140px 24px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-en);
    font-size: 42px;
    font-weight: 300;
    color: var(--star-bright);
    letter-spacing: 0.1em;
}

.page-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 16px auto 0;
}

.news-page-list {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    position: relative;
    z-index: 1;
}

/* News Detail */
.news-detail {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    position: relative;
    z-index: 1;
}

.news-detail-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.news-detail-date {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.news-detail-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--star-bright);
    line-height: 1.5;
}

.news-detail-body {
    font-size: 15px;
    line-height: 2;
    color: var(--text);
}

.news-detail-body p {
    margin-bottom: 20px;
}

.news-detail-body a {
    color: var(--accent-light);
    text-decoration: underline;
}

.news-detail-back {
    margin-top: 60px;
    text-align: center;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-en);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.pagination a:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

.pagination .current {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ===== Floating SNS ===== */
.floating-sns {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}
.floating-sns-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(15, 15, 45, 0.85);
    border: 1px solid rgba(123, 104, 238, 0.3);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.floating-sns-btn:hover {
    background: rgba(123, 104, 238, 0.25);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 104, 238, 0.3);
}
@media (max-width: 768px) {
    .floating-sns {
        bottom: 16px;
        right: 16px;
    }
    .floating-sns-btn {
        width: 42px;
        height: 42px;
    }
}

/* ===== Links Section ===== */
.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.link-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.link-card-name {
    font-family: var(--font-en);
    font-size: 15px;
    color: var(--text);
    letter-spacing: 0.05em;
}

.link-card-arrow {
    color: var(--text-muted);
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}

.link-card:hover .link-card-arrow {
    color: var(--accent-light);
    transform: translateX(4px);
}

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

@media (max-width: 480px) {
    .links-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Discography Grid Page ===== */
.disco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.disco-grid-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.disco-grid-item:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.disco-grid-link {
    display: block;
    color: inherit;
}

.disco-grid-cover img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.disco-grid-info {
    padding: 20px;
    text-align: center;
}

.disco-grid-info h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.5;
}

.disco-grid-date {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.disco-grid-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .disco-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .disco-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

.disco-grid-item[data-disco-modal] {
    cursor: pointer;
}

/* ===== Discography Modal ===== */
.disco-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 24px;
}

.disco-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.disco-modal {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 0;
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.disco-modal-overlay.active .disco-modal {
    transform: translateY(0);
}

.disco-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(15, 15, 45, 0.8);
    border: 1px solid var(--border);
    color: var(--text-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    line-height: 1;
}

.disco-modal-close:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

.disco-modal-content {
    display: flex;
    gap: 32px;
    padding: 32px;
}

.disco-modal-cover {
    flex-shrink: 0;
    width: 260px;
}

.disco-modal-cover img {
    width: 100%;
    border-radius: 0;
    display: block;
}

.disco-modal-info {
    flex: 1;
    min-width: 0;
}

.disco-modal-info h2 {
    font-size: 22px;
    font-weight: 500;
    color: var(--star-bright);
    margin-bottom: 8px;
    line-height: 1.4;
}

.disco-modal-date {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.disco-modal-theme h4,
.disco-modal-tracklist h4,
.disco-modal-staff h4 {
    font-size: 14px;
    color: #c9a84c;
    margin-bottom: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    font-family: var(--font-en);
    letter-spacing: 0.05em;
}

.disco-modal-theme {
    margin-bottom: 20px;
}

.disco-modal-theme p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 2;
}

.disco-modal-tracklist {
    margin-bottom: 20px;
}

.disco-track-block {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.disco-track-block:last-child {
    border-bottom: none;
}

.disco-track-title {
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.disco-track-num {
    font-family: var(--font-en);
    font-size: 12px;
    color: var(--text-muted);
    min-width: 20px;
}

.disco-track-credit {
    font-size: 12px;
    color: var(--text-muted);
    padding-left: 30px;
    line-height: 1.6;
}

.disco-modal-staff {
    margin-bottom: 20px;
}

.disco-modal-staff p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

.disco-modal-link {
    margin-top: 16px;
}

@media (max-width: 640px) {
    .disco-modal-content {
        flex-direction: column;
        padding: 24px;
    }

    .disco-modal-cover {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .disco-modal-info h2 {
        font-size: 18px;
    }
}

/* ===== Works List Page ===== */
.works-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.works-list-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.works-list-item:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.works-list-link {
    display: block;
    color: inherit;
}

.works-list-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.works-list-info {
    padding: 14px;
}

.works-list-info h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.4;
}

.works-list-role {
    font-size: 12px;
    color: var(--accent-light);
    margin-bottom: 2px;
}

.works-list-year {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-en);
}

.works-list-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 6px;
    line-height: 1.6;
}

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

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

@media (max-width: 480px) {
    .works-list-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ===== Works External Section ===== */
.works-external {
    max-width: 720px;
    margin: 0 auto;
    margin-top: 36px;
    padding-top: 0;
}

.works-external h4 {
    font-size: 16px;
    color: #c9a84c;
    margin-bottom: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.external-links-list {
    list-style: none;
    margin-bottom: 14px;
}

.external-links-list li {
    padding: 3px 0 3px 16px;
    position: relative;
}

.external-links-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #c9a84c;
}

.external-links-list a {
    color: var(--accent2-light);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.external-links-list a:hover {
    border-bottom-color: var(--accent2-light);
}

/* ===== Guideline Page ===== */
.guideline-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    position: relative;
    z-index: 1;
}

.guideline-body {
    font-size: 15px;
    line-height: 2;
    color: var(--text);
}

.guideline-body h3 {
    font-size: 18px;
    color: #c9a84c;
    margin-top: 36px;
    margin-bottom: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.guideline-body h3:first-child {
    margin-top: 0;
}

.guideline-body p {
    margin-bottom: 16px;
}

.guideline-body ul {
    list-style: none;
    margin-bottom: 16px;
}

.guideline-body ul li {
    padding: 3px 0 3px 16px;
    position: relative;
}

.guideline-body ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #c9a84c;
}

@media (max-width: 768px) {
    .profile-name-logo {
        justify-content: center;
    }
}
