/* ===========================
   CUSTOM FONTS
=========================== */
@font-face {
  font-family: 'Shirokuma';
  src: url('images/001Shirokuma-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ArmedBanana';
  src: url('images/ArmedBanana.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EmomojiStandard';
  src: url('images/emomoji_standard.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EmomojiAccent';
  src: url('images/emomoji_standard+accent.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EmomojiLine';
  src: url('images/emomoji_standard_line.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --beige:        #C9A87C;
  --beige-light:  #D4B896;
  --beige-blob:   #D3B795;
  --gray-blob:    #BDBBB0;
  --blue-blob:    #B9D5E3;
  --blue-blob-sm: #C4DCE8;
  --text:         #3D3228;
  --text-mid:     #7A6D65;
  --footer-bg:    #F5EDE0;
  --white:        #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 124, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */
.logo {
  text-decoration: none;
  display: block;
  line-height: 1;
}

.logo-yc {
  font-family: 'Dancing Script', cursive;
  font-size: 38px;
  font-weight: 500;
  color: var(--beige);
  line-height: 1;
}

.logo-c {
  font-size: 26px;
  display: inline-block;
  transform: translateY(4px);
  opacity: 0.75;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-list a {
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}

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

.btn-contact {
  background: var(--beige);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-contact:hover {
  background: #b8936a;
}

/* Hamburger / Mobile menu – hidden on desktop */
.hamburger { display: none; }
.mobile-menu { display: none; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: relative;
  width: 100%;
  line-height: 0;
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  white-space: nowrap;
  padding-bottom: 120px;
}

.hero-title {
  font-family: 'EmomojiStandard', sans-serif;
  font-size: clamp(64px, 10vw, 130px);
  font-weight: 400;
  color: rgba(193, 163, 118, 0.82);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(255,255,255,0.3);
}

.hero-title-ja {
  font-family: 'EmomojiStandard', sans-serif;
  font-size: clamp(64px, 10vw, 130px);
  font-weight: 400;
  color: rgba(193, 163, 118, 0.82);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(255,255,255,0.3);
}

.hero-subtitle {
  font-family: 'EmomojiStandard', sans-serif;
  font-size: clamp(14px, 1.8vw, 22px);
  color: rgba(140, 158, 170, 0.85);
  letter-spacing: 0.18em;
  margin-top: 10px;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* ===========================
   BLOB SHAPES
=========================== */
.blob {
  position: absolute;
  border-radius: 50%;
}

/* Large beige blob (top-left area) */
.blob-beige-lg {
  width: 220px;
  height: 200px;
  background: var(--beige-blob);
  border-radius: 62% 38% 55% 45% / 55% 48% 52% 45%;
  top: -20px;
  left: -30px;
}

/* Small gray-green blob */
.blob-gray-sm {
  width: 110px;
  height: 100px;
  background: var(--gray-blob);
  border-radius: 50% 50% 62% 38% / 54% 46% 54% 46%;
  bottom: 20px;
  left: 10px;
}

/* Small beige blob (right top) */
.blob-beige-sm-r {
  width: 86px;
  height: 78px;
  background: var(--beige-blob);
  border-radius: 58% 42% 48% 52% / 44% 62% 38% 56%;
  top: -10px;
  right: 20px;
}

/* Large light blue blob (right) */
.blob-blue-lg {
  width: 190px;
  height: 208px;
  background: var(--blue-blob);
  border-radius: 50% 50% 50% 50% / 58% 58% 42% 42%;
  bottom: -30px;
  right: -20px;
}

/* ===========================
   BIOGRAPHY
=========================== */
.biography {
  padding: 80px 0 60px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-align: center;
  color: var(--text);
  margin-bottom: 60px;
}

.section-title--emomoji {
  font-family: 'EmomojiStandard', sans-serif;
  margin-top: -30px;
}

/* Font compare */
.font-compare {
  margin: 0 auto 60px;
  max-width: 600px;
  padding: 0 24px;
}
.font-compare-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.fc-num {
  font-size: 12px;
  color: #aaa;
  min-width: 20px;
}
.fc-name {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.fc-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--text);
  margin: 0;
  flex: 1;
}
.fc-shirokuma  { font-family: 'Shirokuma', sans-serif; }
.fc-emomoji    { font-family: 'EmomojiStandard', sans-serif; }
.fc-armed      { font-family: 'ArmedBanana', sans-serif; }
.fc-kaushan    { font-family: 'Kaushan Script', cursive; }
.fc-dancing    { font-family: 'Dancing Script', cursive; }
.fc-cormorant  { font-family: 'Cormorant Garamond', serif; font-style: italic; }
.fc-noto       { font-family: 'Noto Serif JP', serif; }
.fc-accent     { font-family: 'EmomojiAccent', sans-serif; }
.fc-line       { font-family: 'EmomojiLine', sans-serif; }

/* Bio 3-column layout */
.bio-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 260px 1fr 240px;
  gap: 20px;
  align-items: center;
  min-height: 320px;
}

.bio-blobs-left {
  position: relative;
  height: 300px;
}

.bio-text {
  padding: 0 20px;
}

.bio-blobs-right {
  position: relative;
  height: 320px;
}

/* Profile text */
.profile-label {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  font-weight: 500;
  color: var(--beige);
  margin-bottom: 10px;
}

.profile-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  color: var(--text);
}

.profile-reading {
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  margin-left: 8px;
}

.profile-body {
  font-size: 12.5px;
  font-weight: 200;
  line-height: 2.0;
  color: var(--text-mid);
  margin-top: 16px;
}

/* ===========================
   DECORATIVE BLOBS (section bg)
=========================== */
.deco-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.deco-blob--beige-xl { width: 320px; height: 300px; background: var(--beige-blob); border-radius: 62% 38% 55% 45% / 55% 48% 52% 45%; }
.deco-blob--beige-md { width: 160px; height: 148px; background: var(--beige-blob); border-radius: 58% 42% 48% 52% / 44% 62% 38% 56%; }
.deco-blob--beige-sm { width: 96px;  height: 88px;  background: var(--beige-blob); border-radius: 58% 42% 52% 48% / 48% 56% 44% 52%; }
.deco-blob--blue-lg  { width: 220px; height: 240px; background: var(--blue-blob);  border-radius: 50% 50% 50% 50% / 58% 58% 42% 42%; }
.deco-blob--blue-sm  { width: 110px; height: 100px; background: var(--blue-blob);  border-radius: 50% 50% 62% 38% / 54% 46% 54% 46%; }
.deco-blob--gray-md  { width: 150px; height: 138px; background: var(--gray-blob);  border-radius: 50% 50% 62% 38% / 54% 46% 54% 46%; }

.deco-tl { top: -40px;  left: -50px;  }
.deco-tr { top: -40px;  right: -50px; }
.deco-bl { bottom: -40px; left: -50px;  }
.deco-br { bottom: -40px; right: -50px; }
.deco-mr { top: 35%;   right: -50px; }

.works-section,
.discography,
.contact {
  position: relative;
  overflow: hidden;
}

/* ===========================
   WORKS
=========================== */
.works-section {
  max-width: 1000px;
  margin: 70px auto 0;
  padding: 0 40px;
}

.works-title {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  font-weight: 500;
  color: var(--beige);
  margin-bottom: 36px;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 60px;
}

.work-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.work-thumb {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  flex-shrink: 0;
}

.work-thumb-beige { background: var(--beige-blob); }
.work-thumb-blue  { background: var(--blue-blob); }
.work-thumb-empty { background: #E8E4DF; }

.work-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  border: 1px solid var(--beige);
  color: var(--beige);
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.work-info h4 {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 6px;
}

.work-info p {
  font-size: 11.5px;
  font-weight: 200;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.work-link {
  font-size: 11.5px;
  color: var(--beige);
  text-decoration: none;
}

.work-link:hover {
  text-decoration: underline;
}

/* ===========================
   DISCOGRAPHY
=========================== */
.discography {
  padding: 80px 0 80px;
  margin-top: 30px;
}

.disco-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.disco-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.disco-art {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #E8B89A 0%, #C98070 40%, #7A3040 70%, #A84060 100%);
}

.disco-art-nature {
  background: linear-gradient(160deg, #6A9A60 0%, #8AB870 40%, #B0C890 70%, #D0D8A0 100%);
}

.disco-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.disco-art img:not([src]), .disco-art img[src=""] {
  display: none;
}

.disco-title {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 8px;
}

.disco-desc {
  font-size: 11px;
  font-weight: 200;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 14px;
}

/* Streaming icons */
.streaming-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.streaming-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.s-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 300;
}

.s-icon svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.s-apple   { background: #000;     color: #fff; border-radius: 5px; }
.s-spotify { background: #1DB954; color: #fff; border-radius: 5px; }
.s-line    { background: #00B900; color: #fff; border-radius: 5px; }
.s-youtube { background: #FF0000; color: #fff; border-radius: 5px; }
.s-amazon  { background: #FF9900; color: #fff; border-radius: 5px; }
.s-mudc    { background: #222;    color: #fff; border-radius: 5px; }
.s-reco    { background: #E60026; color: #fff; border-radius: 5px; }

.subscribe-btn {
  display: inline-block;
  border: 1px solid var(--beige);
  color: var(--beige);
  font-size: 11px;
  padding: 6px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}

.subscribe-btn:hover {
  background: var(--beige);
  color: white;
}

/* Discography追加エリア */
.disco-single-wrap {
  max-width: 1000px;
  margin: 24px auto 0;
  padding: 0 40px;
}

.disco-card--wide {
  max-width: 480px;
}

.disco-art-why {
  background: linear-gradient(160deg, #8AACCC 0%, #AABFCC 50%, #C8C8B0 100%);
}

.disco-art-mini {
  background: linear-gradient(135deg, #D4B896 0%, #E8CCAA 50%, #C8A878 100%);
}

/* ===========================
   INFORMATION
=========================== */
.information {
  padding: 70px 0 60px;
  background: #FAFAF8;
}

.info-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 168, 124, 0.18);
}

.info-item:last-child {
  border-bottom: none;
}

.info-cat {
  flex-shrink: 0;
  display: inline-block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  min-width: 56px;
  text-align: center;
  margin-top: 2px;
}

.info-cat--movie { background: #D4B896; color: white; }
.info-cat--tv    { background: #B9D5E3; color: white; }
.info-cat--cm    { background: #BDBBB0; color: white; }
.info-cat--radio { background: #C8A8C8; color: white; }

.info-body {
  flex: 1;
}

.info-title {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 4px;
}

.info-link {
  font-size: 11px;
  color: var(--beige);
  text-decoration: none;
}

.info-link:hover {
  text-decoration: underline;
}

/* ===========================
   INFO THUMB & SHOW MORE
=========================== */
.info-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 4px;
  overflow: hidden;
  background: #EDE8E2;
}

.info-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-thumb--empty {
  background: #F5EEE6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-thumb--empty img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.info-cat--other { background: #A8C8A0; color: white; }

.icon-ex {
  width: 10px;
  height: 10px;
  vertical-align: middle;
  margin-left: 2px;
}

.info-pager {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.info-scroll-wrap {
  max-height: 440px;
  overflow-y: auto;
  position: relative;
  /* custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,124,0.4) transparent;
}

.info-scroll-wrap::-webkit-scrollbar {
  width: 4px;
}

.info-scroll-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.info-scroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(201,168,124,0.45);
  border-radius: 2px;
}

/* 下にまだコンテンツがあることを示すグラデーション */
.info-scroll-wrap::after {
  content: '';
  position: sticky;
  bottom: 0;
  display: block;
  height: 64px;
  margin-top: -64px;
  background: linear-gradient(to bottom, transparent, #FAFAF8);
  pointer-events: none;
  transition: opacity 0.3s;
}

.info-scroll-wrap.is-scrolled-end::after {
  opacity: 0;
}

.info-pager .info-list {
  padding: 0;
  max-width: none;
  margin: 0;
}

/* ===========================
   BIO PHOTO & SNS
=========================== */
@keyframes stack-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ===========================
   BIO PHOTO CARD STACK
=========================== */
.bio-photo-stack-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 70px;
  animation: stack-float 5s ease-in-out infinite;
}

.bio-card-stack {
  position: relative;
  width: 340px;
  height: 420px;
  cursor: pointer;
}

.bio-card {
  position: absolute;
  width: 290px;
  height: 365px;
  top: 20px;
  left: 25px;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.3, 0.64, 1),
              box-shadow 0.3s ease,
              opacity 0.4s ease;
  will-change: transform;
}

.bio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.bio-card[data-pos="0"] {
  transform: rotate(0deg) translate(0, 0);
  z-index: 3;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.bio-card[data-pos="1"] {
  transform: rotate(-5deg) translate(-8px, 6px);
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

.bio-card[data-pos="2"] {
  transform: rotate(-10deg) translate(-16px, 12px);
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

.bio-card.is-leaving {
  transform: rotate(22deg) translate(140px, -30px) scale(0.82) !important;
  opacity: 0 !important;
  z-index: 4 !important;
  transition: transform 0.42s ease, opacity 0.42s ease !important;
}

.bio-card-hint {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-mid);
  opacity: 0.65;
}

.bio-contact-btn {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid var(--beige);
  color: var(--beige);
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 8px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}

.bio-contact-btn:hover {
  background: var(--beige);
  color: white;
}

.bio-sns {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  align-items: center;
}

/* ===========================
   WORKS ACCORDION
=========================== */
.works-cat {
  border-bottom: 1px solid rgba(201, 168, 124, 0.2);
}

.works-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  user-select: none;
}

.works-cat-header:hover .works-cat-name {
  color: var(--beige);
}

.works-cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color 0.2s;
}

.works-cat-icon {
  font-size: 18px;
  color: var(--beige);
  line-height: 1;
  width: 20px;
  text-align: center;
}

.works-cat-list {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.works-cat-list.is-open {
  max-height: 2000px;
}

.works-cat-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 124, 0.12);
  margin-bottom: 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.works-cat-list li:last-child {
  border-bottom: none;
}

.work-li-thumb {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 4px;
  overflow: hidden;
  background: #EDE8E2;
}

.work-li-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-li-body {
  flex: 1;
}

.works-cat-list li h4 {
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 4px;
}

.works-cat-list li p {
  font-size: 11.5px;
  font-weight: 200;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 4px;
}

/* ===========================
   DISCOGRAPHY (NEW LIST LAYOUT)
=========================== */
.disco-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.disco-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.disco-info {
  flex: 1;
}

.streaming-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.streaming-logos img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.streaming-logos img[src$=".gif"] {
  height: 22px;
}

.streaming-logos a:hover img {
  opacity: 1;
}

/* ===========================
   VIDEO SECTION
=========================== */
.video-section {
  max-width: 900px;
  margin: 64px auto 0;
  padding: 0 40px;
}

.video-label {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  font-weight: 500;
  color: var(--beige);
  margin-bottom: 6px;
}

.video-title {
  font-size: 12px;
  font-weight: 200;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
}

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

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 80px 0 90px;
  text-align: center;
  background: white;
}

.contact-text {
  font-size: 12.5px;
  font-weight: 200;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 36px;
}

.contact-mail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--beige);
  color: var(--beige);
  text-decoration: none;
  transition: all 0.25s;
}

.contact-mail-btn svg {
  width: 24px;
  height: 24px;
}

.contact-mail-btn:hover {
  background: var(--beige);
  color: white;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--footer-bg);
  padding: 48px 40px 28px;
  text-align: center;
}

.footer-logo {
  display: inline-block;
  font-family: 'Dancing Script', cursive;
  font-size: 42px;
  font-weight: 500;
  color: var(--beige);
  text-decoration: none;
  line-height: 1;
  margin-bottom: 20px;
}

.footer-logo-sub {
  font-size: 28px;
  opacity: 0.75;
  display: inline-block;
  transform: translateY(4px);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social-link {
  color: var(--text-mid);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.footer-social-link:hover {
  color: var(--beige);
}

.footer-copy {
  font-size: 10.5px;
  font-weight: 200;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

/* ===========================
   RESPONSIVE – MOBILE
   max-width: 640px
=========================== */
@media (max-width: 640px) {

  /* --- HEADER --- */
  .header-inner {
    padding: 12px 20px;
    justify-content: flex-end;
  }
  .nav { display: none; }

  /* Hamburger button */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
  }
  .hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Header above overlay */
  .header { z-index: 200; }

  /* Mobile menu overlay */
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(255, 252, 248, 0.97);
    backdrop-filter: blur(12px);
    z-index: 150;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav-list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .mobile-nav-list a {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: var(--text);
    text-decoration: none;
  }
  .mobile-nav-list li:last-child a {
    display: inline-block;
    background: var(--beige);
    color: white;
    padding: 12px 36px;
    border-radius: 50px;
  }

  /* --- HERO --- */
  .hero-title { font-size: clamp(32px, 9vw, 64px); }

  /* --- SECTION TITLE --- */
  .section-title { margin-bottom: 36px; }

  /* --- INFORMATION --- */
  .information { padding: 50px 0 40px; }
  .info-pager { padding: 0 16px; }
  .info-list { padding: 0 16px; }
  .info-item { gap: 10px; padding: 14px 0; }
  .info-cat { min-width: 44px; font-size: 9px; padding: 2px 6px; }
  .info-thumb { width: 52px; height: 52px; }
  .info-thumb--empty img { width: 52px; height: 52px; }
  .info-scroll-wrap { max-height: 360px; }

  /* --- BIOGRAPHY --- */
  .biography { padding: 50px 0 36px; }
  .bio-layout {
    display: block;
    padding: 0 24px;
  }
  .bio-blobs-left,
  .bio-blobs-right { display: none; }
  .bio-text { padding: 0; }
  .profile-name { font-size: 22px; }
  .profile-body { font-size: 12px; line-height: 1.9; }

  /* --- CARD STACK --- */
  .bio-photo-stack-wrap { padding: 32px 0 48px; }
  .bio-card-stack { width: 210px; height: 265px; }
  .bio-card { width: 178px; height: 236px; top: 13px; left: 16px; }
  .bio-card.is-leaving {
    transform: rotate(22deg) translate(88px, -20px) scale(0.82) !important;
  }

  /* --- WORKS --- */
  .works-section { padding: 0 16px; margin-top: 48px; }
  .works-cat-list li { gap: 10px; padding: 12px 0; }
  .work-li-thumb { width: 46px; height: 46px; }
  .works-cat-list li h4 { font-size: 12px; }
  .works-cat-list li p { font-size: 11px; }

  /* --- DISCOGRAPHY --- */
  .discography { padding: 60px 0; }
  .disco-list { padding: 0 20px; gap: 32px; }
  .disco-item { gap: 16px; }
  .disco-art { width: 84px; height: 84px; }
  .disco-single-wrap { padding: 0 20px; }
  .streaming-logos { gap: 8px; margin-top: 8px; }
  .streaming-logos img { height: 20px; }
  .streaming-logos img[src$=".gif"] { height: 16px; }
  .disco-title { font-size: 12.5px; }
  .disco-desc { font-size: 11px; }

  /* --- VIDEO --- */
  .video-section { padding: 0 20px; margin-top: 40px; }

  /* --- CONTACT --- */
  .contact { padding: 60px 20px 70px; }
  .contact-text { padding: 0; font-size: 12px; margin-bottom: 28px; }

  /* --- FOOTER --- */
  .footer { padding: 36px 20px 24px; }

  /* --- DECO BLOBS (縮小) --- */
  .deco-blob--beige-xl { width: 160px; height: 150px; }
  .deco-blob--blue-lg  { width: 120px; height: 132px; }
  .deco-blob--beige-md { width: 96px;  height: 90px;  }
  .deco-blob--blue-sm  { width: 65px;  height: 60px;  }
  .deco-blob--gray-md  { width: 88px;  height: 80px;  }
  .deco-blob--beige-sm { width: 58px;  height: 52px;  }

}
