/* ==========================================================================
   Artist Profile Styles - Hidari Records
   ========================================================================== */

.profile-container {
  padding: 64px 58px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

.profile-visuals {
  position: relative;
}

/* Large Taped Polaroid Photo Card */
.polaroid-card {
  padding: 18px 18px 24px;
  background: rgba(243, 236, 222, 0.96);
  box-shadow: 0 20px 48px rgba(0,0,0,0.16);
  transform: rotate(-1.5deg);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 38px;
  transition: transform 0.3s ease;
}

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

.polaroid-card::before {
  content: "";
  position: absolute;
  width: 96px;
  height: 24px;
  background: var(--tape);
  top: -12px;
  left: 36%;
  transform: rotate(3deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 5;
}

.polaroid-photo {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(0,0,0,0.1);
  filter: saturate(0.85) contrast(1.02);
}

.polaroid-caption {
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* YouTube Play Video Card */
.video-link-card {
  background: rgba(22, 22, 22, 0.95);
  color: var(--cream);
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 20px;
  transform: rotate(1deg);
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.video-link-card:hover {
  transform: rotate(0deg) scale(1.02);
  background: #000;
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.video-info-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}

.video-info-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Main Info Layout */
.profile-info {
  display: grid;
  gap: 34px;
}

.profile-header {
  border-bottom: 1px dashed var(--line);
  padding-bottom: 24px;
}

.artist-huge-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin: 0 0 6px;
  color: var(--ink);
}

.artist-kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.taped-quote-box {
  background: rgba(236, 226, 210, 0.94);
  padding: 24px 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transform: rotate(-1deg);
  border-left: 2px solid var(--tape-dark);
  position: relative;
  margin: 10px 0;
}

.taped-quote-box::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 18px;
  background: var(--tape);
  top: -9px;
  left: 32px;
  transform: rotate(4deg);
}

.taped-quote {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
  color: #38322c;
}

/* Vintage Typewriter Suno Prompt Ledger Card */
.prompt-ledger-card {
  background: #e4dccb;
  border: 1px solid rgba(22, 22, 22, 0.16);
  padding: 28px 24px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.03), 0 8px 20px rgba(0,0,0,0.05);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  border-radius: 2px;
  position: relative;
}

.prompt-ledger-card::after {
  content: "SOUND BLUEPRINT // SUNO V3";
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
}

.ledger-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  margin-bottom: 14px;
  color: #3e3833;
}

.ledger-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  margin-bottom: 10px;
  border-bottom: 1px dashed rgba(22, 22, 22, 0.08);
  padding-bottom: 8px;
}

.ledger-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.ledger-label {
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.ledger-value {
  color: var(--ink);
}

.back-btn-container {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

@media (max-width: 900px) {
  .profile-container {
    grid-template-columns: 1fr;
    padding: 44px 24px;
    gap: 38px;
  }
}


/* concre — memory developed into noise */
.concre-page {
  background: #090c0d;
}

.concre-page .sidebar {
  background: #f3eee3;
}

.concre-main {
  overflow: hidden;
  background: #0b0f10;
  color: #e9e6dc;
}

.concre-profile {
  --concre-night: #0b0f10;
  --concre-deep: #101718;
  --concre-fog: #a4aaa5;
  --concre-paper: #e9e6dc;
  --concre-amber: #d8b56b;
  --concre-signal: #c7d58a;
  background:
    radial-gradient(circle at 88% 12%, rgba(202, 213, 186, 0.07), transparent 24%),
    linear-gradient(180deg, #080b0c 0%, #111718 48%, #0a0d0e 100%);
  color: var(--concre-paper);
}

.concre-section-label,
.concre-index,
.concre-memory-number {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--concre-signal);
}

.concre-hero {
  position: relative;
  min-height: min(82vw, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(233, 230, 220, 0.14);
}

.concre-hero-figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.concre-hero-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.06) brightness(0.78);
}

.concre-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 9, 0.1) 18%, rgba(4, 8, 9, 0.24) 54%, rgba(4, 8, 9, 0.88) 100%),
    linear-gradient(90deg, rgba(4, 8, 9, 0.34) 0%, transparent 55%);
}

.concre-hero-figure figcaption {
  position: absolute;
  right: 28px;
  bottom: 22px;
  z-index: 2;
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(233, 230, 220, 0.58);
}

.concre-hero-copy {
  position: relative;
  z-index: 2;
  width: min(840px, 86%);
  padding: clamp(70px, 10vw, 140px) clamp(28px, 7vw, 96px);
}

.concre-hero-copy h1 {
  margin: 12px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(92px, 15vw, 210px);
  font-weight: 300;
  line-height: 0.7;
  letter-spacing: -0.055em;
  color: #f0ede3;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.28);
}

.concre-reading {
  margin: 24px 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.34em;
  color: rgba(233, 230, 220, 0.66);
}

.concre-lead {
  margin: 36px 0 0;
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.08em;
  text-wrap: balance;
}

.concre-poem {
  padding: clamp(88px, 12vw, 168px) clamp(28px, 7vw, 104px);
  border-bottom: 1px solid rgba(233, 230, 220, 0.12);
}

.concre-poem-heading {
  max-width: 920px;
  margin: 0 auto clamp(64px, 9vw, 112px);
}

.concre-poem-heading h2,
.concre-about-heading h2,
.concre-sound-copy h2,
.concre-listen-heading h2 {
  margin: 15px 0 0;
  font-size: clamp(36px, 6vw, 78px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

.concre-poem-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(233, 230, 220, 0.16);
}

.concre-verse {
  min-height: 300px;
  padding: 42px 42px 50px 0;
  border-bottom: 1px solid rgba(233, 230, 220, 0.16);
}

.concre-verse:nth-child(odd):not(.concre-verse-final) {
  border-right: 1px solid rgba(233, 230, 220, 0.16);
}

.concre-verse:nth-child(even) {
  padding-left: 42px;
}

.concre-verse h3 {
  margin: 0 0 24px;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.65;
}

.concre-verse p {
  margin: 0;
  font-size: 14px;
  line-height: 2.2;
  color: rgba(233, 230, 220, 0.68);
}

.concre-verse-final {
  grid-column: 1 / -1;
  min-height: 370px;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 64px 0;
  border-right: 0;
}

.concre-verse-final p {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: clamp(35px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--concre-paper);
}

.concre-about {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(54px, 9vw, 140px);
  padding: clamp(90px, 12vw, 170px) clamp(28px, 7vw, 104px);
  background: #e7e4da;
  color: #172022;
}

.concre-about-heading {
  align-self: start;
  position: sticky;
  top: 64px;
}

.concre-about .concre-section-label {
  color: #667041;
}

.concre-about-copy {
  max-width: 670px;
}

.concre-about-copy p {
  margin: 0 0 36px;
  font-size: 15px;
  line-height: 2.35;
}

.concre-about-copy .concre-about-lead {
  margin-bottom: 50px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(23, 32, 34, 0.24);
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.9;
  font-weight: 500;
}

.concre-memories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(233, 230, 220, 0.16);
  border-bottom: 1px solid rgba(233, 230, 220, 0.16);
}

.concre-memory {
  min-height: 380px;
  padding: clamp(38px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.concre-memory + .concre-memory {
  border-left: 1px solid rgba(233, 230, 220, 0.16);
}

.concre-memory h2 {
  margin: auto 0 30px;
  font-size: clamp(20px, 2.4vw, 31px);
  font-weight: 400;
  line-height: 1.8;
}

.concre-memory p:last-child {
  margin: 0;
  font-size: 13px;
  line-height: 2;
  color: rgba(233, 230, 220, 0.58);
}

.concre-sound {
  display: grid;
  grid-template-columns: minmax(340px, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(60px, 10vw, 160px);
  padding: clamp(96px, 13vw, 180px) clamp(28px, 7vw, 104px);
  background:
    linear-gradient(135deg, rgba(199, 213, 138, 0.06), transparent 44%),
    #101718;
}

.concre-sound-copy {
  max-width: 690px;
}

.concre-sound-copy p:not(.concre-section-label) {
  margin: 38px 0 0;
  font-size: 14px;
  line-height: 2.25;
  color: rgba(233, 230, 220, 0.7);
}

.concre-blueprint {
  align-self: end;
  margin: 0;
  border-top: 1px solid rgba(233, 230, 220, 0.18);
}

.concre-blueprint div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(233, 230, 220, 0.18);
}

.concre-blueprint dt {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concre-signal);
}

.concre-blueprint dd {
  margin: 0;
  font-family: 'Outfit', 'Noto Serif JP', sans-serif;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(233, 230, 220, 0.68);
}

.concre-listen {
  padding: clamp(90px, 12vw, 160px) clamp(28px, 7vw, 104px);
  background: #d9d6cc;
  color: #151c1e;
}

.concre-listen .concre-section-label {
  color: #667041;
}

.concre-listen-heading {
  margin-bottom: 64px;
}

.concre-listen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.concre-listen-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(21, 28, 30, 0.24);
  color: #151c1e;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.concre-listen-card:hover,
.concre-listen-card:focus-visible {
  background: #151c1e;
  color: #f0ede3;
  transform: translateY(-4px);
}

.concre-play {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
}

.concre-listen-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.concre-listen-card small,
.concre-listen-card em {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.16em;
}

.concre-listen-card strong {
  margin: 10px 0 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.concre-listen-card-note {
  background: rgba(102, 112, 65, 0.08);
}

.concre-profile-footer {
  min-height: 380px;
  padding: clamp(72px, 10vw, 136px) clamp(28px, 7vw, 104px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  background: #070a0b;
}

.concre-profile-footer > p {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.8;
}

.concre-profile-footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.concre-profile-footer small {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.18em;
  color: rgba(233, 230, 220, 0.52);
}

.concre-profile-footer .button {
  border-color: rgba(233, 230, 220, 0.72);
  color: var(--concre-paper);
}

.concre-profile-footer .button:hover {
  background: var(--concre-paper);
  color: #111;
}

@media (max-width: 980px) {
  .concre-hero {
    min-height: 72vw;
  }

  .concre-poem-grid {
    grid-template-columns: 1fr;
  }

  .concre-verse {
    min-height: auto;
    padding: 38px 0 44px;
    border-right: 0 !important;
  }

  .concre-verse:nth-child(even) {
    padding-left: 0;
  }

  .concre-verse-final {
    grid-column: auto;
    min-height: 330px;
  }

  .concre-about,
  .concre-sound {
    grid-template-columns: 1fr;
  }

  .concre-about-heading {
    position: static;
  }

  .concre-memories,
  .concre-listen-grid {
    grid-template-columns: 1fr;
  }

  .concre-memory {
    min-height: 300px;
  }

  .concre-memory + .concre-memory {
    border-left: 0;
    border-top: 1px solid rgba(233, 230, 220, 0.16);
  }

  .concre-listen-card {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .concre-hero {
    min-height: 660px;
  }

  .concre-hero-figure img {
    object-position: 50% center;
  }

  .concre-hero-figure figcaption {
    right: 18px;
    bottom: 14px;
  }

  .concre-hero-copy {
    width: 100%;
    padding: 64px 22px 90px;
  }

  .concre-hero-copy h1 {
    font-size: clamp(82px, 30vw, 122px);
  }

  .concre-lead br {
    display: none;
  }

  .concre-poem,
  .concre-about,
  .concre-sound,
  .concre-listen,
  .concre-profile-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .concre-memory {
    padding: 42px 22px;
  }

  .concre-blueprint div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .concre-profile-footer {
    min-height: 440px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
  }

  .concre-profile-footer > div {
    align-items: flex-start;
  }
}


/* conqurinkA-specific overrides */
.conqurinka-page .profile-container {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.04) 0%, rgba(48, 45, 42, 0.04) 100%);
}

.conqurinka-page .crt-frame {
  padding: 16px;
  background: #2a2522;
  border: 1px solid rgba(22, 22, 22, 0.2);
  border-radius: 4px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.18), 0 0 30px rgba(255, 0, 127, 0.1);
  transform: rotate(-1deg);
  margin-bottom: 38px;
  transition: transform 0.3s ease;
  position: relative;
}

.conqurinka-page .crt-frame:hover {
  transform: rotate(0deg) translateY(-4px);
}

.conqurinka-page .crt-frame::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 22px;
  background: rgba(255, 0, 127, 0.3);
  top: -10px;
  left: 36%;
  transform: rotate(4deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 5;
}

.conqurinka-page .crt-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 3px double #302d2a; /* asphalt-gray */
  background: #111;
}

.conqurinka-page .crt-screen::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.22) 50%), 
              linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.04));
  z-index: 2;
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
}

.conqurinka-page .crt-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05) brightness(0.95);
}

.conqurinka-page .crt-caption {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  text-align: center;
  color: #9c9187;
  letter-spacing: 0.12em;
}

.conqurinka-page .video-link-card {
  border: 1px solid rgba(255, 0, 127, 0.15);
}

.conqurinka-page .video-link-card:hover {
  border-color: #ff007f; /* neon-pink */
}

.conqurinka-page .play-btn {
  background: #ff007f; /* neon-pink */
  color: var(--cream);
}

.conqurinka-page .video-info-sub {
  color: #ff007f; /* neon-pink */
  font-weight: 600;
}

.conqurinka-page .taped-quote-box {
  background: rgba(255, 230, 240, 0.94);
  border-left: 3px solid #ff007f; /* neon-pink */
}

.conqurinka-page .taped-quote-box::before {
  background: rgba(255, 0, 127, 0.22);
}

.conqurinka-page .taped-quote {
  color: #382c32;
}

.conqurinka-page .prompt-ledger-card {
  background: #ebdcd8;
  border: 1px solid rgba(255, 0, 127, 0.16);
}

.conqurinka-page .prompt-ledger-card::after {
  content: "SOUND BLUEPRINT // SYSTEM BUG v1";
  color: #ff007f; /* neon-pink */
  opacity: 0.8;
}

.conqurinka-page .ledger-title {
  border-bottom: 1px solid rgba(255, 0, 127, 0.16);
  color: #ff007f; /* neon-pink */
}


/* QuinkA — artist profile */
.quinka-page {
  --quinka-ink: #233a3b;
  --quinka-cyan: #4aa9a8;
  --quinka-coral: #cf635f;
  --quinka-pink: #e9a6b5;
  --quinka-yellow: #e5bd47;
  --quinka-cream: #f3ecdd;
  --quinka-paper: #e8decb;
}

.quinka-main {
  background:
    linear-gradient(rgba(35, 58, 59, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 58, 59, 0.025) 1px, transparent 1px),
    #eee6d8;
  background-size: 8px 8px, 8px 8px, auto;
}

.quinka-profile {
  max-width: 1320px;
  margin: 0 auto;
  padding: 44px;
  color: var(--quinka-ink);
}

.quinka-profile figure,
.quinka-profile h1,
.quinka-profile h2,
.quinka-profile h3,
.quinka-profile p,
.quinka-profile dl,
.quinka-profile dd {
  margin-top: 0;
}

.quinka-profile img {
  display: block;
  width: 100%;
}

.quinka-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.72fr);
  align-items: stretch;
  border: 1px solid rgba(35, 58, 59, 0.24);
  box-shadow: 14px 16px 0 rgba(35, 58, 59, 0.1);
}

.quinka-hero-figure {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  background: #173d43;
}

.quinka-hero-figure img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quinka-hero-figure figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 7px 10px;
  background: rgba(35, 58, 59, 0.86);
  color: var(--quinka-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.quinka-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 38px;
  background:
    radial-gradient(circle at 88% 12%, rgba(229, 189, 71, 0.52), transparent 23%),
    radial-gradient(circle at 8% 88%, rgba(233, 166, 181, 0.46), transparent 30%),
    var(--quinka-cream);
}

.quinka-index,
.quinka-section-label {
  margin-bottom: 12px;
  color: var(--quinka-coral);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.quinka-hero-copy h1 {
  margin-bottom: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 8vw, 132px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.78;
}

.quinka-reading {
  margin: 13px 0 34px;
  color: rgba(35, 58, 59, 0.62);
  font-size: 12px;
  letter-spacing: 0.32em;
}

.quinka-lead {
  margin-bottom: 28px;
  font-size: clamp(16px, 1.7vw, 23px);
  font-weight: 500;
  line-height: 1.85;
}

.quinka-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quinka-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(35, 58, 59, 0.3);
  background: rgba(255, 255, 255, 0.42);
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.quinka-story {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
  padding: 120px 5% 110px;
}

.quinka-portrait {
  position: relative;
  padding: 13px 13px 42px;
  background: var(--quinka-cream);
  box-shadow: 12px 16px 34px rgba(35, 58, 59, 0.18);
  transform: rotate(-1.4deg);
}

.quinka-portrait::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 36%;
  width: 104px;
  height: 25px;
  background: rgba(207, 99, 95, 0.42);
  transform: rotate(4deg);
}

.quinka-portrait figcaption {
  position: absolute;
  bottom: 10px;
  left: 18px;
  color: rgba(35, 58, 59, 0.68);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
}

.quinka-story-copy h2,
.quinka-playing-copy h2,
.quinka-sound h2 {
  margin-bottom: 26px;
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.quinka-story-copy > p:not(.quinka-section-label),
.quinka-playing-copy > p:not(.quinka-section-label) {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 2.2;
}

.quinka-ai-note {
  position: relative;
  margin-top: 42px;
  padding: 32px 34px;
  border: 1px solid rgba(35, 58, 59, 0.22);
  background: rgba(243, 236, 221, 0.72);
  box-shadow: 8px 8px 0 rgba(74, 169, 168, 0.16);
}

.quinka-ai-note h3 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 500;
}

.quinka-ai-note p:last-child {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 2;
}

.quinka-playing {
  position: relative;
  margin: 0 -44px;
  padding-bottom: 62px;
  background: var(--quinka-ink);
  color: var(--quinka-cream);
}

.quinka-playing figure {
  overflow: hidden;
  max-height: 760px;
}

.quinka-playing figure img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.quinka-playing-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  column-gap: 70px;
  align-items: start;
  max-width: 1080px;
  margin: -78px auto 0;
  padding: 42px 48px;
  position: relative;
  background: var(--quinka-ink);
  border: 1px solid rgba(243, 236, 221, 0.24);
  box-shadow: 12px 12px 0 rgba(207, 99, 95, 0.34);
}

.quinka-playing-copy .quinka-section-label,
.quinka-playing-copy h2 {
  grid-column: 1;
}

.quinka-playing-copy > p:not(.quinka-section-label) {
  grid-column: 1;
  margin-bottom: 0;
}

.quinka-fairies {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  gap: 12px;
}

.quinka-fairies > div {
  display: grid;
  grid-template-columns: 15px 64px 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(243, 236, 221, 0.24);
}

.quinka-fairies small {
  color: rgba(243, 236, 221, 0.7);
  font-size: 11px;
}

.fairy-dot {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(243, 236, 221, 0.72);
  border-radius: 50%;
}

.fairy-dot.blue { background: #2771b9; }
.fairy-dot.pink { background: #e99daf; }
.fairy-dot.yellow { background: #e5bd47; }

.quinka-sound {
  padding: 110px 5% 96px;
}

.quinka-sound-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.quinka-listen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 54px;
}

.quinka-listen-card {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 20px 24px;
  border: 1px solid rgba(35, 58, 59, 0.26);
  background: rgba(243, 236, 221, 0.72);
  color: var(--quinka-ink);
  text-decoration: none;
  box-shadow: 5px 6px 0 rgba(35, 58, 59, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quinka-listen-card:hover,
.quinka-listen-card:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 8px 9px 0 rgba(207, 99, 95, 0.2);
}

.quinka-play {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--quinka-coral);
  color: white;
  font-size: 13px;
}

.quinka-listen-card strong,
.quinka-listen-card small {
  display: block;
}

.quinka-listen-card strong {
  margin-bottom: 4px;
  font-size: 16px;
}

.quinka-listen-card small {
  color: rgba(35, 58, 59, 0.6);
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.quinka-blueprint {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(35, 58, 59, 0.24);
  border-left: 1px solid rgba(35, 58, 59, 0.24);
}

.quinka-blueprint > div {
  padding: 23px 26px;
  border-right: 1px solid rgba(35, 58, 59, 0.24);
  border-bottom: 1px solid rgba(35, 58, 59, 0.24);
}

.quinka-blueprint dt {
  margin-bottom: 6px;
  color: var(--quinka-coral);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quinka-blueprint dd {
  font-size: 12px;
  line-height: 1.8;
}

.quinka-profile-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 26px 0 10px;
  border-top: 1px dashed rgba(35, 58, 59, 0.28);
}

.quinka-profile-footer p {
  margin-bottom: 0;
  color: rgba(35, 58, 59, 0.56);
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
}

@media (max-width: 1080px) {
  .quinka-profile {
    padding: 28px;
  }

  .quinka-hero {
    grid-template-columns: 1fr;
  }

  .quinka-hero-figure {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .quinka-hero-copy {
    padding: 42px;
  }

  .quinka-story {
    padding-inline: 0;
  }

  .quinka-playing {
    margin-inline: -28px;
  }
}

@media (max-width: 760px) {
  .quinka-profile {
    padding: 16px;
  }

  .quinka-hero {
    box-shadow: 7px 8px 0 rgba(35, 58, 59, 0.1);
  }

  .quinka-hero-figure figcaption {
    left: 9px;
    bottom: 8px;
    font-size: 8px;
  }

  .quinka-hero-copy {
    padding: 34px 24px;
  }

  .quinka-hero-copy h1 {
    font-size: clamp(72px, 25vw, 100px);
  }

  .quinka-lead br {
    display: none;
  }

  .quinka-story {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 86px 0 78px;
  }

  .quinka-portrait {
    width: min(82%, 420px);
    justify-self: center;
  }

  .quinka-ai-note {
    padding: 26px 24px;
  }

  .quinka-playing {
    margin-inline: -16px;
    padding-bottom: 42px;
  }

  .quinka-playing figure img {
    min-height: 310px;
  }

  .quinka-playing-copy {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: -28px 16px 0;
    padding: 30px 24px;
  }

  .quinka-playing-copy .quinka-section-label,
  .quinka-playing-copy h2,
  .quinka-playing-copy > p:not(.quinka-section-label),
  .quinka-fairies {
    grid-column: 1;
  }

  .quinka-fairies {
    grid-row: auto;
  }

  .quinka-sound {
    padding: 82px 0 72px;
  }

  .quinka-listen-grid,
  .quinka-blueprint {
    grid-template-columns: 1fr;
  }

  .quinka-profile-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ==========================================================================
   Lyrics Page Styles
   ========================================================================== */

.lyrics-container {
  padding: 64px 58px;
  max-width: 800px;
  margin: 0 auto;
}

.lyrics-paper {
  background: rgba(243, 236, 222, 0.96);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  padding: 48px;
  border: 1px solid rgba(0,0,0,0.06);
  transform: rotate(-0.5deg);
  position: relative;
  margin-bottom: 38px;
}

.lyrics-paper::before {
  content: "";
  position: absolute;
  width: 96px;
  height: 24px;
  background: var(--tape);
  top: -12px;
  left: 42%;
  transform: rotate(2deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 5;
}

.lyrics-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
  color: var(--ink);
  text-align: center;
}

.lyrics-artist {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  margin-bottom: 38px;
}

.lyrics-body {
  font-size: 15px;
  line-height: 2.3;
  color: var(--ink);
  text-align: center;
  white-space: pre-line;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  margin-bottom: 0;
}

.lyrics-translation {
  margin-top: 48px;
  border-top: 1px dashed var(--line);
  padding-top: 38px;
  font-size: 14px;
  line-height: 2.2;
  color: var(--muted);
  text-align: center;
  white-space: pre-line;
  font-family: 'Cormorant Garamond', "Outfit", sans-serif;
}

@media (max-width: 900px) {
  .lyrics-container {
    padding: 44px 24px;
  }
  .lyrics-paper {
    padding: 28px 20px;
  }
  .lyrics-title {
    font-size: 28px;
  }
}

/* Track Link Styles */
.track-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed var(--line);
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.track-link:hover {
  color: #ff007f; /* neon-pink */
  border-bottom-color: #ff007f;
}
