:root {
  --paper: #eee8dc;
  --paper-deep: #ded5c6;
  --ink: #161616;
  --muted: #6d665f;
  --line: rgba(22, 22, 22, 0.18);
  --black: #111111;
  --tape: rgba(213, 195, 156, 0.58);
  --tape-dark: rgba(188, 170, 132, 0.7);
  --blue-night: #1c2636;
  --dusk: #5b526b;
  --pink-dust: #c9a1a5;
  --cream: #f7f0e2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(177, 143, 165, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,0.25), transparent 24%),
    var(--paper);
  color: var(--ink);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  mix-blend-mode: multiply;
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  z-index: 100;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 34px 28px 24px;
  border-right: 1px solid var(--line);
  background: rgba(246, 240, 229, 0.78);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  z-index: 20;
}

/* Elegant Custom Scrollbar for Sidebar */
.sidebar::-webkit-scrollbar {
  width: 4px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 2px;
}

.logo-container {
  margin-bottom: 24px;
}

.logo-ja {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 500;
  transform: rotate(-1.5deg);
  margin-bottom: 6px;
}

.logo-en {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--muted);
}

.nav {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav a:hover, .nav a.active {
  color: var(--ink);
  padding-left: 4px;
}

.nav a::after {
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover::after, .nav a.active::after {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-bottom {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-copy {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  transform: rotate(-0.5deg);
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.icons {
  display: flex;
  gap: 16px;
  color: var(--muted);
  align-items: center;
}

.icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(22, 22, 22, 0.04);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.icons a:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

/* Premium Taped Sidebar Image */
.sidebar-collage {
  position: relative;
  margin: 10px 0 16px;
  width: 100%;
}

.sidebar-paper {
  position: relative;
  width: 100%;
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}

.sidebar-paper:hover {
  transform: rotate(0deg) scale(1.02);
}

.sidebar-paper img {
  width: 100%;
  height: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.06);
}

.sidebar-paper::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 18px;
  background: var(--tape);
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(4deg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  z-index: 2;
}

.copyright {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.main {
  min-width: 0;
}

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  padding: 80px 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,16,16,0.3), transparent 50%, rgba(238,232,220,0.35)),
    radial-gradient(circle at 68% 28%, rgba(217, 166, 176, 0.18), transparent 28%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #f7f1e9;
  max-width: 760px;
}

.hero-kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.9;
  font-weight: 500;
}

.hero h1 {
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 82px);
  line-height: 1.35;
  letter-spacing: 0.12em;
  margin: 0 0 34px;
  transform: rotate(-1.5deg);
  text-shadow: 0 3px 16px rgba(0,0,0,0.28);
}

.hero h1 span {
  border-bottom: 2px solid rgba(255,255,255,0.7);
}

.hero-lead {
  max-width: 620px;
  font-size: 15px;
  line-height: 2.25;
  background: rgba(11, 15, 23, 0.35);
  padding: 18px 22px;
  border-left: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}

.hero-collage {
  position: relative;
  z-index: 3;
  min-height: 480px;
}

.photo-card {
  position: absolute;
  width: 82%;
  right: 2%;
  top: 20px;
  padding: 14px;
  background: rgba(243, 236, 222, 0.94);
  box-shadow: 0 26px 60px rgba(0,0,0,0.32);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.photo-card:hover {
  transform: rotate(1deg) translateY(-4px);
}

.photo-card::before,
.memo::before,
.cassette::before {
  content: "";
  position: absolute;
  width: 88px;
  height: 24px;
  background: var(--tape);
  top: -14px;
  left: 42%;
  transform: rotate(-5deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  z-index: 5;
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
  filter: grayscale(10%) contrast(1.05) saturate(0.9);
}

.photo-caption {
  padding-top: 12px;
  font-size: 13px;
  text-align: center;
  color: #423b35;
  transform: rotate(-0.5deg);
}

.memo {
  position: absolute;
  left: -8%;
  top: 110px;
  width: 170px;
  padding: 28px 18px 18px;
  background: rgba(246, 240, 228, 0.92);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  transform: rotate(-3deg);
}

.sketch {
  position: absolute;
  right: -8px;
  bottom: -10px;
  width: 230px;
  padding: 20px;
  border: 1px dashed rgba(22, 22, 22, 0.28);
  background: rgba(240, 233, 220, 0.85);
  transform: rotate(3deg);
  font-size: 12px;
  line-height: 1.8;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.sketch-line {
  height: 110px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 48% 52% 50% 50%;
  position: relative;
  margin-bottom: 12px;
  filter: grayscale(100%) contrast(1.2) opacity(0.85);
}

.scroll-mark {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 30px;
  color: rgba(255,255,255,0.78);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-align: center;
}

.scroll-mark::before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  margin: 0 auto 10px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-bottom: 1px solid var(--line);
}

.panel {
  padding: 44px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 310px;
  background: rgba(246, 240, 229, 0.66);
  position: relative;
}

.panel:nth-child(even) {
  background: rgba(235, 227, 215, 0.46);
}

.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-3 { grid-column: span 3; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.label {
  display: inline-block;
  background: var(--black);
  color: var(--cream);
  padding: 3px 10px 2px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
  transform: rotate(-1deg);
  font-weight: 600;
  margin: 0;
}

.view-link {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.view-link:hover {
  color: var(--ink);
}

.release-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

.jacket {
  aspect-ratio: 1 / 1;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  position: relative;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.jacket:hover {
  transform: scale(1.02) rotate(-1deg);
}

.jacket::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 22px;
  top: -10px;
  left: 20px;
  transform: rotate(-8deg);
  background: var(--tape);
}

/* Premium Release Rows list with thumbnails */
.premium-release-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}

.premium-release-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  transition: transform 0.2s ease;
}

.premium-release-item:hover {
  transform: translateX(4px);
}

.release-thumb {
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.release-row-info {
  font-size: 12px;
  line-height: 1.5;
}

.release-row-date {
  font-family: 'Outfit', sans-serif;
  color: var(--muted);
  font-size: 11px;
}

.release-row-title {
  font-weight: 500;
  color: var(--ink);
}

.release-title,
.artist-title,
.project-title {
  font-size: 24px;
  line-height: 1.6;
  margin: 0 0 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.meta {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.body-text {
  font-size: 14px;
  line-height: 2.15;
  color: #2a2724;
  margin: 0;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(22, 22, 22, 0.14);
  font-size: 13px;
}

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

.news-date {
  font-family: 'Outfit', sans-serif;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.news-title-text {
  line-height: 1.6;
}

/* News Sunset image card */
.news-visual-card {
  margin-top: 24px;
  width: 100%;
  height: 130px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  filter: saturate(0.85) contrast(0.95);
  position: relative;
}

.news-visual-card::after {
  content: "night is young";
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--cream);
  font-size: 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.artist-card {
  min-height: 135px;
  padding: 16px;
  color: var(--cream);
  display: flex;
  align-items: end;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  filter: saturate(0.85);
  position: relative;
  overflow: hidden;
}

.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

/* artist card backgrounds are set inline in HTML for cleaner CSS management */

.artist-name {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-weight: 500;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.philosophy-photo {
  aspect-ratio: 16 / 7;
  margin-bottom: 22px;
  filter: contrast(0.9) saturate(0.78);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.quote {
  font-size: 26px;
  line-height: 1.7;
  margin: 0 0 16px;
  transform: rotate(-1deg);
  font-weight: 500;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-card {
  background: rgba(246,240,229,0.85);
  padding: 26px 22px;
  min-height: 170px;
  transition: background 0.3s ease;
}

.project-card:hover {
  background: rgba(246,240,229,0.98);
}

.project-icon {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--muted);
}

.note-card {
  position: absolute;
  right: 32px;
  bottom: 28px;
  width: 250px;
  padding: 26px 20px 18px;
  background: rgba(236, 226, 210, 0.92);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transform: rotate(-2deg);
  font-size: 13px;
  line-height: 2;
}

.note-card::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 76px;
  width: 86px;
  height: 24px;
  background: var(--tape);
  transform: rotate(6deg);
}

.cassette {
  width: 320px;
  max-width: 100%;
  min-height: 170px;
  padding: 28px;
  background:
    linear-gradient(140deg, rgba(16,16,16,0.92), rgba(45,45,45,0.98));
  color: var(--cream);
  transform: rotate(3deg);
  box-shadow: 0 18px 38px rgba(0,0,0,0.26);
  position: relative;
  border: 2px solid #282828;
  transition: transform 0.3s ease;
}

.cassette:hover {
  transform: rotate(1deg) scale(1.02);
}

.cassette-label {
  background: #e9dfc8;
  color: #111;
  padding: 8px 12px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  margin-bottom: 22px;
  font-weight: 600;
  border-radius: 2px;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
}

.cassette-holes {
  display: flex;
  justify-content: space-between;
  padding: 0 38px;
}

.hole {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 8px solid #222;
  background: #ded5c6;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}

.button {
  display: inline-block;
  margin-top: 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 8px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

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

  .sidebar {
    position: relative;
    height: auto;
    padding: 24px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .sidebar-bottom {
    display: none;
  }

  .nav {
    grid-template-columns: repeat(4, max-content);
    gap: 10px 18px;
    margin-top: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 70px 34px 120px;
  }

  .hero-collage {
    display: none;
  }

  .span-4,
  .span-5,
  .span-3,
  .span-6,
  .span-7,
  .span-8 {
    grid-column: span 12;
  }

  .project-list,
  .contact-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .logo-ja {
    font-size: 25px;
  }

  .nav {
    grid-template-columns: repeat(2, max-content);
    font-size: 11px;
  }

  .hero {
    min-height: 620px;
    padding: 54px 22px 96px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 13px;
    padding: 14px 16px;
  }

  .panel {
    padding: 34px 22px;
  }

  .release-layout,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .quote {
    font-size: 22px;
  }
}
