/* ========================================
   Seia Lee - Modern Elegant Design
   ======================================== */

:root {
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-cream: #faf9f7;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e8e8e8;
  --color-gray-300: #d4d4d4;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-900: #171717;
  --color-gold: #b8956b;
  --color-gold-light: #d4b896;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-jp: "Noto Serif JP", "Yu Mincho", serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-900);
  background-color: var(--color-white);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main,
.inner-main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

/* ========================================
   Header
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  transition: all 0.4s var(--ease-out);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-white);
  transition: color 0.3s var(--ease-out);
}

.header-logo-img {
  height: 28px;
  width: auto;
}

/* トップページ用：ロゴ切り替え */
.header-logo-dark {
  display: none;
}

.header.scrolled .header-logo-white {
  display: none;
}

.header.scrolled .header-logo-dark {
  display: block;
}

/* 内ページ：白背景ヘッダー */
.inner-page .header,
.header--dark {
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.inner-page .header-logo-text,
.header--dark .header-logo-text {
  color: var(--color-gray-900);
}

.header.scrolled .header-logo-text {
  color: var(--color-gray-900);
}

.header-nav {
  display: none;
}

@media (min-width: 900px) {
  .header-nav {
    display: block;
  }
}

.header-nav-list {
  display: flex;
  gap: 2.5rem;
}

.header-nav-list a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.header-nav-list a:hover {
  transform: translateY(-1px);
}

.inner-page .header-nav-list a,
.header--dark .header-nav-list a {
  color: var(--color-gray-700);
}

.header-nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-out);
}

.header-nav-list a:hover::after {
  width: 100%;
}

.header-nav-list a.is-active {
  color: var(--color-gold);
}

.header-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  z-index: 10;
}

@media (min-width: 900px) {
  .header-menu-btn {
    display: none;
  }
}

.header-menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-white);
  transition: all 0.3s var(--ease-out);
}

.inner-page .header-menu-btn span,
.header--dark .header-menu-btn span {
  background: var(--color-gray-900);
}

.header.scrolled .header-menu-btn span {
  background: var(--color-gray-900);
}

/* トップページ用ヘッダー（ヒーロー上は透明） */
.top-page .header:not(.scrolled) .header-logo-text,
.top-page .header:not(.scrolled) .header-nav-list a {
  color: var(--color-white);
}

.top-page .header:not(.scrolled) .header-menu-btn span {
  background: var(--color-white);
}

/* トップページ：スクロール後は内ページと同じ色に */
.top-page .header.scrolled .header-nav-list a {
  color: var(--color-gray-700);
}

.top-page .header.scrolled .header-menu-btn span {
  background: var(--color-gray-900);
}

/* ========================================
   Nav Overlay
   ======================================== */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out);
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0.7;
}

.nav-overlay-content {
  text-align: center;
}

.nav-overlay-list {
  margin-bottom: 3rem;
}

.nav-overlay-list li {
  margin: 0.75rem 0;
}

.nav-overlay-list a {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-white);
  display: inline-block;
  padding: 0.5rem 1rem;
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.nav-overlay-list a:hover {
  color: var(--color-gold);
}

.nav-overlay-list a.is-active {
  color: var(--color-gold);
}

.nav-overlay-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.nav-overlay-social a {
  color: var(--color-gray-500);
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  padding: 0.5rem;
}

.nav-overlay-social a:hover {
  color: var(--color-gold);
  transform: scale(1.1);
}

/* ========================================
   Inner Page - Common
   ======================================== */

.inner-main {
  padding-top: 70px;
}

@media (min-width: 768px) {
  .inner-main {
    padding-top: 80px;
  }
}

.page-hero {
  padding: 2.5rem 1.5rem 2rem;
  background: var(--color-cream);
  text-align: center;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 3rem 2rem 2.5rem;
  }
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-gray-900);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gray-900);
  margin-bottom: 2rem;
  text-align: center;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-900);
}

/* ========================================
   Profile Page
   ======================================== */

.profile-section {
  padding: 5rem 2rem;
  background: var(--color-white);
}

.profile-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .profile-inner {
    grid-template-columns: 400px 1fr;
    gap: 4rem;
  }
}

.profile-image {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-image img {
  width: 100%;
  border-radius: 8px;
}

.profile-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* profile-header と profile-bio は縦積み */
.profile-header,
.profile-bio {
  display: block;
  width: 100%;
}

.profile-header {
  margin-bottom: 2rem;
}

.profile-name-en {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
}

.profile-name-jp {
  font-family: var(--font-jp);
  font-size: 1.1rem;
  color: var(--color-gray-500);
  margin-bottom: 0.5rem;
}

.profile-title {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.profile-bio p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-gray-700);
  margin-bottom: 1rem;
}

.profile-bio p:last-child {
  margin-bottom: 0;
}

.profile-bio-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 2rem 0 0.75rem;
}

.profile-bio-title:first-child {
  margin-top: 0;
}

/* ========================================
   Discography Section
   ======================================== */

.discography-section {
  padding: 5rem 2rem;
  background: var(--color-cream);
}

.discography-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.album-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out);
}

.album-card:hover {
  transform: translateY(-4px);
}

.album-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.album-info {
  padding: 1.25rem;
}

.album-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
}

.album-year {
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-bottom: 0.125rem;
}

.album-format {
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

.discography-cta {
  text-align: center;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: linear-gradient(180deg, #111111 0%, var(--color-black) 100%);
  color: var(--color-white);
  padding: 5rem 2rem 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
    align-items: center;
  }
}

.footer-brand {
  order: 1;
}

@media (min-width: 768px) {
  .footer-brand {
    order: 0;
  }
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  order: 0;
}

@media (min-width: 768px) {
  .footer-nav {
    order: 1;
  }
}

.footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-out);
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  order: 2;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.footer-social a {
  color: var(--color-gray-500);
  transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
  color: var(--color-gold);
  transform: translateY(-2px);
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.7rem;
  color: var(--color-gray-700);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  order: 3;
}

/* ========================================
   Top Page (index) - Hero
   ======================================== */

.top-page {
  background: var(--color-white);
  color: var(--color-gray-900);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img,
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-content,
.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: 2rem;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-jp);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  opacity: 0.9;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.6) 100%);
  pointer-events: none;
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--color-gold-light);
  margin: 2rem auto 1.5rem;
}

.hero-cta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transition: left 0.4s var(--ease-out);
  z-index: -1;
}

.hero-cta:hover {
  color: var(--color-black);
  border-color: var(--color-white);
}

.hero-cta:hover::before {
  left: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

/* ========================================
   Top Page - About Section
   ======================================== */

.about-section {
  padding: 5rem 2rem;
  background: var(--color-cream);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-text {
  order: 1;
}

.about-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
}

.about-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-gray-700);
  margin-bottom: 2rem;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-900);
  transition: all 0.3s var(--ease-out);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}

.about-link:hover {
  color: var(--color-gold);
  gap: 1rem;
}

.about-link svg {
  transition: transform 0.3s var(--ease-out);
}

.about-link:hover svg {
  transform: translateX(4px);
}

.about-image {
  order: 2;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.about-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ========================================
   Top Page - Featured Section
   ======================================== */

.featured-section {
  padding: 6rem 2rem 5rem;
  background: linear-gradient(180deg, var(--color-white) 0%, #faf9f7 100%);
}

.featured-inner {
  max-width: 900px;
  margin: 0 auto;
}

.featured-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.featured-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin: 1rem auto 0;
  opacity: 0.6;
}

.featured-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
}

.featured-card-image {
  position: relative;
  width: 100%;
}

.featured-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-white);
}

@media (min-width: 600px) {
  .featured-card-content {
    padding: 2rem 2.5rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }
}

.featured-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .featured-card-info {
    margin-bottom: 0;
  }
}

.featured-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-gray-900);
  line-height: 1.2;
}

@media (min-width: 600px) {
  .featured-card-title {
    font-size: 1.75rem;
  }
}

.featured-card-role {
  font-size: 0.65rem;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.featured-card-name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-gray-700);
}

.featured-card-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 600px) {
  .featured-card-details {
    align-items: flex-end;
    text-align: right;
    margin-bottom: 0;
  }
}

.featured-card-date,
.featured-card-venue {
  font-size: 0.8rem;
  color: var(--color-gray-600);
  letter-spacing: 0.02em;
}

.featured-card-date {
  font-weight: 500;
  color: var(--color-gray-800);
}

.featured-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-gray-900);
  padding: 0.875rem 1.75rem;
  border-radius: 0;
  transition: all 0.3s var(--ease-out);
  width: 100%;
}

@media (min-width: 600px) {
  .featured-card-btn {
    width: auto;
  }
}

.featured-card-btn::after {
  content: '→';
  font-size: 0.85rem;
  transition: transform 0.3s var(--ease-out);
}

.featured-card-btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.featured-card-btn:hover::after {
  transform: translateX(4px);
}

/* ========================================
   Top Page - Works Preview
   ======================================== */

.works-preview {
  padding: 5rem 2rem;
  background: var(--color-cream);
}

.works-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.works-preview-header {
  margin-bottom: 3rem;
  text-align: center;
}

.works-preview-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.works-preview-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--color-gray-900);
}

.works-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .works-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.works-preview-item {
  padding: 1.75rem;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-out);
  border: 1px solid transparent;
}

.works-preview-item:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: rgba(184, 149, 107, 0.2);
}

.works-preview-year {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.works-preview-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.works-preview-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-gray-700);
}

.works-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-900);
  margin: 0 auto;
  transition: all 0.3s var(--ease-out);
}

.works-preview-link:hover {
  color: var(--color-gold);
  gap: 1rem;
}

.works-preview-link svg {
  transition: transform 0.3s var(--ease-out);
}

.works-preview-link:hover svg {
  transform: translateX(4px);
}

.works-preview-inner > .works-preview-link {
  display: flex;
  justify-content: center;
}

/* ========================================
   Music Page
   ======================================== */

.music-section {
  padding: 5rem 2rem;
}

.music-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.music-album {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--color-cream);
  border-radius: 16px;
  margin-bottom: 2rem;
}

@media (min-width: 700px) {
  .music-album {
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
  }
}

.music-album-cover img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.music-album-header {
  margin-bottom: 1rem;
}

.music-album-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
}

.music-album-meta {
  font-size: 0.8rem;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.music-album-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
}

.music-tracklist {
  margin-top: 10px;
  margin-bottom: 1.5rem;
}

.music-tracklist-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 0.75rem;
}

.music-tracklist-items {
  padding-left: 1.25rem;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--color-gray-700);
}

.music-album-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.music-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-gray-900);
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
}

.music-link:hover {
  background: var(--color-gray-900);
  color: var(--color-white);
  border-color: var(--color-gray-900);
}

.videos-section {
  padding: 5rem 2rem;
  background: var(--color-gray-100);
}

.videos-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.video-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s var(--ease-out);
}

.video-card:hover {
  transform: translateY(-2px);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: var(--color-gray-100);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.video-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-gray-500);
}

/* ========================================
   Works Page
   ======================================== */

.works-filter-section {
  padding: 2rem 2rem 0;
  background: var(--color-white);
}

.works-filter-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.works-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.works-filter-tab {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
  background: transparent;
  border: 1px solid var(--color-gray-200);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.works-filter-tab:hover {
  color: var(--color-gray-800);
  border-color: var(--color-gray-400);
}

.works-filter-tab.is-active {
  color: var(--color-white);
  background: var(--color-gray-900);
  border-color: var(--color-gray-900);
}

.works-gallery-section {
  padding: 2rem 2rem 4rem;
  background: var(--color-white);
}

.works-gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
}

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

@media (min-width: 600px) {
  .works-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 900px) {
  .works-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.works-gallery-item {
  cursor: pointer;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.works-gallery-item.is-hidden {
  display: none;
}

.works-gallery-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-gray-100);
}

.works-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.works-gallery-item:hover .works-gallery-image img {
  transform: scale(1.08);
}

.works-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1em;
  opacity: 1;
  transition: opacity 0.3s, background-color 0.3s;
}

.works-gallery-item:hover .works-gallery-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.works-gallery-year {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.works-gallery-item:hover .works-gallery-year {
  opacity: 1;
  transform: translateY(0);
}

.works-gallery-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  transition-delay: 0.05s;
}

.works-gallery-item:hover .works-gallery-title {
  opacity: 1;
  transform: translateY(0);
}

/* Works Modal */
.works-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 50px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}

.works-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.works-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.works-modal-content {
  position: relative;
  max-width: 800px;
  width: 100%;
  padding: 30px;
  background: var(--color-white);
  border-radius: 12px;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s var(--ease-out);
  margin: auto 0;
}

.works-modal.is-open .works-modal-content {
  transform: scale(1) translateY(0);
}

.works-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--color-gray-700);
  transition: all 0.3s var(--ease-out);
}

.works-modal-close:hover {
  background: var(--color-white);
  color: var(--color-gray-900);
  transform: rotate(90deg);
}

.works-modal-img {
  width: 100%;
  display: block;
  border-radius: 12px 12px 0 0;
}

.works-modal-info {
  padding: 1.5rem 2rem 2rem;
}

.works-modal-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.works-modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gray-900);
  margin-bottom: 0.75rem;
}

.works-modal-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-gray-600);
}

.works-modal-images {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.works-modal-images .works-modal-img:first-child {
  border-radius: 12px 12px 0 0;
}

.works-modal-images .works-modal-img:not(:first-child) {
  border-radius: 0;
}

body.modal-open {
  overflow: hidden;
}

/* ========================================
   Photos Page
   ======================================== */

.photos-section {
  padding: 5rem 2rem;
}

.photos-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 600px) {
  .photos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 900px) {
  .photos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.photo-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.photo-item:hover img {
  transform: scale(1.08);
}

/* Photo Modal */
.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s var(--ease-out);
}

.photo-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.photo-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
}

.photo-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0.7;
  transition: all 0.3s var(--ease-out);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.photo-modal-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.photo-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0.7;
  transition: all 0.3s var(--ease-out);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.photo-modal-nav:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%) scale(1.1);
}

.photo-modal-prev {
  left: 1.5rem;
}

.photo-modal-next {
  right: 1.5rem;
}

.photo-modal-content {
  position: relative;
  z-index: 5;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.photo-modal-img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.press-modal-caption {
  color: var(--color-white);
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
}

/* Instagram CTA */
.instagram-cta {
  padding: 4rem 2rem;
  background: var(--color-cream);
  text-align: center;
}

.instagram-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.instagram-cta-text {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.instagram-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gray-900);
  transition: color 0.3s var(--ease-out);
}

.instagram-cta-link:hover {
  color: var(--color-gold);
}

.instagram-cta-link svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   Press Page
   ======================================== */

.press-section {
  padding: 5rem 2rem;
}

.press-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.press-year-group {
  margin-bottom: 4rem;
}

.press-year-group:last-child {
  margin-bottom: 0;
}

.press-year {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.press-item {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.press-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.press-image {
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.press-image img {
  width: 100%;
  height: auto;
  display: block;
}

.press-caption {
  padding: 1rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--color-gray-600);
}

.press-item--group {
  grid-column: span 2;
}

.press-image-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--color-gray-100);
}

.press-image-group img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .press-item--group {
    grid-column: span 1;
  }
}

/* ========================================
   Responsive - Mobile Optimizations
   ======================================== */

@media (max-width: 768px) {
  .header {
    padding: 1rem 20px;
  }

  .header-logo-img {
    height: 22px;
  }

  /* Hero section mobile */
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-subtitle {
    font-size: clamp(0.85rem, 3vw, 1.1rem);
  }

  .hero-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.7rem;
  }

  /* About section mobile */
  .about-section {
    padding: 4rem 20px;
  }

  .about-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .about-desc {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  /* Featured section mobile */
  .featured-section {
    padding: 4rem 20px 3rem;
  }

  .featured-label {
    margin-bottom: 2rem;
  }

  .featured-card-content {
    padding: 1.5rem;
  }

  .featured-card-title {
    font-size: 1.35rem;
  }

  .featured-card-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.65rem;
  }

  /* Works Preview mobile */
  .works-preview {
    padding: 4rem 20px;
  }

  .works-preview-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .works-preview-item {
    padding: 1.25rem;
  }

  /* Inner page hero mobile */
  .inner-hero {
    padding: 6rem 20px 2rem;
  }

  .inner-hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  /* Page hero mobile */
  .page-hero {
    padding: 2rem 20px 1.5rem;
  }

  /* Works gallery mobile */
  .works-filter-section {
    padding: 1.5rem 20px 0;
  }

  .works-gallery-section {
    padding: 1.5rem 20px 3rem;
  }

  .works-filter {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .works-filter-tab {
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
  }

  /* Profile section mobile */
  .profile-section {
    padding: 3rem 20px;
  }

  .profile-title {
    font-size: 1.25rem;
  }

  /* Photos grid mobile */
  .photos-section {
    padding: 2rem 20px;
  }

  .photos-grid {
    gap: 0.35rem;
  }

  .photo-item {
    border-radius: 6px;
  }

  /* Press section mobile */
  .press-section {
    padding: 2rem 20px;
  }

  .press-year {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .press-grid {
    gap: 0.75rem;
  }

  .press-caption {
    font-size: 0.7rem;
    padding: 0.5rem;
  }

  /* Music section mobile */
  .music-section {
    padding: 3rem 20px;
  }

  .music-album {
    padding: 1.5rem;
  }

  .album-title {
    font-size: 1.25rem;
  }

  /* Videos section mobile */
  .videos-section {
    padding: 3rem 20px;
  }

  /* Footer mobile */
  .footer {
    padding: 3rem 20px;
  }

  .footer-logo {
    font-size: 1.1rem;
  }

  .footer-nav {
    gap: 1rem;
  }

  .footer-nav a {
    font-size: 0.65rem;
  }

  /* Modal mobile */
  .photo-modal-nav {
    width: 44px;
    height: 44px;
  }

  .photo-modal-prev {
    left: 0.75rem;
  }

  .photo-modal-next {
    right: 0.75rem;
  }

  .photo-modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  /* Nav overlay mobile */
  .nav-overlay-list a {
    font-size: 1.75rem;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .header {
    padding: 0.875rem 16px;
  }

  .header-logo-img {
    height: 20px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .about-section,
  .featured-section,
  .works-preview,
  .profile-section,
  .music-section,
  .videos-section,
  .photos-section,
  .press-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .works-filter-section,
  .works-gallery-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .featured-card-content {
    padding: 1.25rem;
  }

  .featured-card-title {
    font-size: 1.2rem;
  }

  .works-preview-item {
    padding: 1rem;
  }

  .footer-inner {
    gap: 1.5rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  .header-menu-btn {
    width: 44px;
    height: 44px;
    padding: 8px;
  }

  .nav-close {
    width: 56px;
    height: 56px;
  }

  /* Disable hover effects on touch devices */
  .about-image:hover img {
    transform: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  }

  .works-preview-item:hover {
    transform: none;
  }

  .photo-modal-nav:hover {
    transform: translateY(-50%);
  }
}

/* ========================================
   Animations & Enhancements
   ======================================== */

/* Smooth fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Selection styling */
::selection {
  background: var(--color-gold);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--color-gold);
  color: var(--color-white);
}

/* Smooth scrollbar for WebKit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray-500);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
