:root {
  --bg: #0b0a09;
  --bg-soft: #141210;
  --bg-card: #1c1916;
  --ink: #f6f1e8;
  --muted: #b8b0a3;
  --gold: #c9a46a;
  --gold-soft: #ead7b0;
  --line: rgba(201, 164, 106, 0.24);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans KR", "Helvetica Neue", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.serif { font-family: "Cormorant Garamond", "Noto Serif KR", Georgia, serif; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(11, 10, 9, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .38em;
  font-size: 22px;
  color: var(--gold-soft);
  flex: 0 0 auto;
}
.nav-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-main a {
  padding: 6px 11px;
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: none;
  color: #f3eadc;
  border-bottom: 1px solid transparent;
}
.nav-main a:hover { color: var(--gold-soft); }
.nav-main a.is-active {
  color: var(--gold-soft);
  border-bottom-color: var(--gold);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  border: 0;
}
.lang-switch button {
  min-width: auto;
  min-height: 32px;
  padding: 0 7px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .16em;
  color: #e8dcc6;
  background: transparent;
}
.lang-switch button + button::before {
  content: "·";
  margin-right: 7px;
  color: rgba(201,164,106,.45);
}
.lang-switch button[aria-pressed="true"] {
  background: transparent;
  color: var(--gold-soft);
}
.menu-toggle {
  display: none;
  min-width: auto;
  min-height: 36px;
  border: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .18em;
  font-size: 17px;
  font-weight: 600;
  color: #f3eadc;
}

.hero {
  display: block;
  position: relative;
  min-height: calc(100svh - 72px);
}
.hero-photo {
  background:
    linear-gradient(90deg, transparent 60%, rgba(11,10,9,.55)),
    linear-gradient(180deg, rgba(11,10,9,.05), rgba(11,10,9,.55)),
    url("../assets/hero.jpg") center 18% / cover no-repeat;
}
.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 48px 48px;
  max-width: 720px;
  background: linear-gradient(180deg, transparent, rgba(11,10,9,.78) 38%);
}
.kicker {
  color: var(--gold);
  letter-spacing: .28em;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1 {
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: .92;
}
h2 {
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
}
.lead { margin-top: 22px; color: var(--muted); max-width: 36ch; font-size: 17px; font-weight: 300; }
.muted { color: var(--muted); }
.page {
  padding: 72px 0 96px;
}
.page-hero {
  padding: 34px 0 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  letter-spacing: .16em;
  font-size: 11px;
  text-transform: uppercase;
}
.btn:hover { background: var(--gold); color: #1a140c; }
.btn.ghost { border-color: var(--line); color: var(--muted); }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold-soft); background: transparent; }

.quote-band {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
blockquote {
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-style: italic;
  line-height: 1.35;
  max-width: 16em;
  margin: 0 auto;
}
.quote-band cite {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  letter-spacing: .2em;
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
}

.about-grid, .split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-grid img, .cover img { width: 100%; height: 100%; object-fit: cover; }
.about-grid img { height: 640px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.fact { border-top: 1px solid var(--line); padding-top: 12px; }
.fact b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: var(--gold-soft);
  font-weight: 500;
}
.fact span { font-size: 12px; color: var(--muted); }

.album-hero { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; margin-bottom: 28px; }
.cover { box-shadow: 0 24px 70px rgba(0,0,0,.4); }
.album-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 16px;
  background: var(--bg-card);
  margin-top: 16px;
}
.album-row img { width: 160px; height: 160px; object-fit: cover; }
.quote-photo {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 36px;
  background:
    linear-gradient(180deg, transparent 30%, rgba(11,10,9,.88)),
    url("../assets/portrait-red.jpg") center 20% / cover no-repeat;
}
.quote-photo blockquote { max-width: 16em; text-align: left; color: var(--gold-soft); }
.profile-list { margin-top: 22px; color: var(--muted); }
.profile-list li { margin: 8px 0 8px 18px; }
.note {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 16px;
  color: var(--muted);
  margin-top: 18px;
}
.discog, .press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.card, .disc, .press-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 22px;
}
.disc small, .press-card span {
  color: var(--gold);
  letter-spacing: .14em;
  font-size: 11px;
  text-transform: uppercase;
}
.disc h3, .card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
  margin: 8px 0;
}
.press-card q {
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
}
.press-card span { display: block; margin-top: 16px; }

table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 16px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--gold); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; }
td.date { font-family: "Cormorant Garamond", serif; font-size: 22px; color: var(--gold-soft); white-space: nowrap; }
.ticket { color: var(--gold); letter-spacing: .12em; font-size: 11px; text-transform: uppercase; }

.frame { position: relative; padding-top: 56.25%; border: 1px solid var(--line); background: #000; }
.frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.mail { font-family: "Cormorant Garamond", serif; font-size: 26px; color: var(--gold-soft); }
.socials { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 18px; }
.socials a { color: var(--muted); letter-spacing: .14em; font-size: 12px; text-transform: uppercase; }
.socials a:hover { color: var(--gold); }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

[data-i18n] { display: none !important; }
html[lang="en"] [data-i18n="en"],
html[lang="de"] [data-i18n="de"],
html[lang="ko"] [data-i18n="ko"] { display: revert !important; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-main {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 72px;
    background: #110f0d;
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 16px;
    flex-direction: column;
    align-items: stretch;
  }
  body.nav-open .nav-main { display: flex; }
  .nav-main a { padding: 12px 8px; border-bottom: 1px solid var(--line); }
  .hero, .about-grid, .split, .album-hero, .discog, .press-grid, .facts {
    grid-template-columns: 1fr;
  }
  .hero-photo { min-height: 58svh; }
  .hero-copy { padding: 32px 22px 48px; }
  .about-grid img { height: 420px; }
}

@media (max-width: 980px) {
  .album-row { grid-template-columns: 1fr; }
  .album-row img { width: 100%; height: auto; }
  .quote-photo { min-height: 380px; }
}

.story p { margin-top: 16px; color: var(--muted); max-width: 68ch; font-size: 16px; }
.story p.leadish { color: var(--ink); font-size: 18px; }
.store-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.store {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.store:hover { border-color: var(--gold); color: var(--gold); }
.store.epk { border-color: var(--gold); }

.hero-live { position: relative; }
.hero-media {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}
.hero-slides, .hero-slides .slide, .hero-yt {
  position: absolute; inset: 0;
}
.hero-slides .slide {
  background-size: cover;
  background-position: center 18%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 8s ease;
}
.hero-slides .slide.is-on {
  opacity: 1;
  transform: scale(1);
}
.hero-yt {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none !important;
  transform: scale(1.22);
  transform-origin: center;
}
.contact-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none !important;
}
.yt-shield {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,9,.18), transparent 28%, rgba(11,10,9,.72));
  pointer-events: none;
}
.sound-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: auto;
  z-index: 7;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: rgba(11,10,9,.35);
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sound-btn svg { width: 22px; height: 22px; display: none; }
.sound-btn .icon-off { display: block; }
.sound-btn[aria-pressed="true"] .icon-off { display: none; }
.sound-btn[aria-pressed="true"] .icon-on { display: block; }
.hero-quotes {
  position: absolute;
  right: 6%;
  top: 16%;
  z-index: 6;
  width: min(460px, 88%);
}
.hero-quotes .tick { display: none; }
.hero-quotes .tick.is-on { display: block; animation: fadeup .7s ease; }
.hero-quotes blockquote {
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(26px, 4.2vw, 44px);
  font-style: italic;
  line-height: 1.25;
  color: #f6f1e8;
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}
.hero-quotes cite {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  letter-spacing: .18em;
  font-size: 11px;
  text-transform: uppercase;
  font-style: normal;
}
.press-ticker { min-height: 180px; }
.press-ticker .tick { display: none; }
.press-ticker .tick.is-on { display: block; animation: fadeup .7s ease; }
@keyframes fadeup {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vcard {
  display: block;
  text-align: left;
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
}
.vcard img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: saturate(.9); }
.vcard span {
  display: block;
  padding: 12px 14px 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
}
.vcard:hover { border-color: var(--gold); }
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0,0,0,.86);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox-frame { width: min(1100px, 100%); aspect-ratio: 16/9; }
.lightbox iframe { width: 100%; height: 100%; border: 0; }
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  color: var(--gold-soft); font-size: 14px; letter-spacing: .16em;
}
.contact-page { padding-top: 0; }
.contact-stage {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  min-height: calc(100svh - 72px);
  align-items: stretch;
}
.contact-video {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
}
.contact-video .frame {
  padding-top: 0;
  height: 100%;
  min-height: calc(100svh - 72px);
  border: 0;
}
.contact-copy {
  padding: 48px 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-copy h1 {
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: .95;
}
@media (max-width: 980px) {
  .hero-media { min-height: 0; }
  .hero-copy { max-width: none; }
  .contact-stage { grid-template-columns: 1fr; }
  .contact-video .frame { min-height: 0; height: auto; aspect-ratio: 16 / 10; }
  .contact-copy { padding: 32px 22px 48px; }
  .hero-media::after { background: linear-gradient(180deg, transparent 30%, rgba(11,10,9,.8)); }
  .video-grid { grid-template-columns: 1fr; }
}

.press-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.press-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.press-links b { font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 500; }
.press-links span { color: var(--muted); font-size: 13px; text-align: right; }
.press-links a:hover { color: var(--gold-soft); }
.store-row { align-items: center; }
.si {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
}
.si svg { width: 18px; height: 18px; fill: currentColor; }
.si:hover { border-color: var(--gold); color: var(--gold); }
.si.epk { border-radius: 999px; width: auto; padding: 0 12px; font-size: 10px; letter-spacing: .14em; }
@media (max-width: 980px) {
  .press-links { grid-template-columns: 1fr; }
  .press-links a { flex-direction: column; gap: 4px; }
  .press-links span { text-align: left; }
}

/* quiet luxury pass */
:root {
  --bg: #0b0a08;
  --bg-soft: #14110d;
  --bg-card: transparent;
  --ink: #f6efe3;
  --muted: #c4b7a2;
  --gold: #c9a56a;
  --gold-soft: #edd9b0;
  --line: rgba(201, 165, 106, 0.22);
}
body {
  letter-spacing: .01em;
  font-weight: 300;
}
.wrap { width: min(1080px, calc(100% - 48px)); }
.site-header {
  background: rgba(8,7,6,.72);
  border-bottom-color: rgba(201,164,106,.12);
}
.logo { letter-spacing: .46em; font-weight: 600; color: #edd9b0; }
.nav-main a { font-size: 19px; letter-spacing: .11em; color: #f3eadc; font-weight: 600; }
.nav-main a.is-active { color: #edd9b0; }
.page { padding: 88px 0 120px; }
.page-hero {
  border-bottom-color: rgba(201,164,106,.12);
  padding: 12px 0 28px;
  margin-bottom: 56px;
}
.btn {
  background: transparent;
  border-color: rgba(201,164,106,.35);
  letter-spacing: .22em;
  min-height: 42px;
  padding: 0 16px;
}
.btn:hover { background: transparent; color: var(--gold-soft); border-color: var(--gold); }
.album-row {
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 28px 0;
  margin-top: 0;
}
.card, .disc, .press-card {
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 28px 0 8px;
}
.press-grid { gap: 28px 48px; }
.press-card q { font-size: 26px; line-height: 1.32; }
.vcard { border-color: rgba(201,164,106,.14); background: transparent; }
.si { border-color: rgba(201,164,106,.22); background: transparent; }
.frame { border: 0; }
.about-grid img { filter: saturate(.86) contrast(1.04); }
.cover { box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.hero-quotes blockquote { font-weight: 400; }
.lead { font-size: 16px; line-height: 1.7; }
.story p { line-height: 1.8; }
.contact-copy { padding: 64px 48px; }
table td { padding: 22px 8px; }
.ticket { letter-spacing: .18em; }
.press-links a { padding: 20px 0; }
.press-links b { font-size: 24px; }
.sound-btn { background: transparent; }
.hero-copy h1 { letter-spacing: .16em; }
@media (min-width: 981px) {
  .page-hero, .story { text-align: center; }
  .story p { margin-inline: auto; }
}
.album-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.album-cover-lg { width: 100%; box-shadow: 0 24px 70px rgba(0,0,0,.45); }
.tracks { margin: 16px 0 0 18px; color: var(--muted); }
.tracks li { margin: 6px 0; }
@media (max-width: 980px) {
  .album-detail { grid-template-columns: 1fr; }
}
.fact b { font-size: 26px; }
.fact-link { text-decoration: none; }
.fact-link b {
  color: var(--gold-soft);
  border-bottom: 1px solid var(--gold);
  display: inline;
  padding-bottom: 2px;
}
.fact-link:hover b { color: var(--gold); }
.embed-epk {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}
.embed-epk iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed-listen {
  background: transparent;
  border: 0;
}
.embed-listen iframe {
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 10px;
}
.liner { max-width: 68ch; margin: 40px auto 8px; text-align: left; }
.liner p { margin-top: 16px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.liner .leadish { color: var(--ink); font-size: 20px; font-family: "Cormorant Garamond","Noto Serif KR",serif; line-height: 1.4; }
.liner .review { color: var(--gold-soft); font-family: "Cormorant Garamond",serif; font-style: italic; font-size: 20px; }
.liner cite { display: block; margin-top: 8px; color: var(--gold); font-style: normal; letter-spacing: .16em; font-size: 11px; text-transform: uppercase; font-family: "Noto Sans KR",sans-serif; }
.liner .credits { font-size: 14px; }
.news-block { padding: 72px 0 20px; max-width: 640px; }
.news-form { display: grid; gap: 10px; margin-top: 22px; }
.news-form input {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 46px;
  padding: 0 14px;
  font: inherit;
}
.news-form .privacy { font-size: 12px; color: var(--muted); }
.news-form .privacy a { color: var(--gold); }
.steinway-fact { border-top: 1px solid var(--line); }
.steinway-row,
.steinway-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin: 0;
}
.steinway-row b,
.steinway-lockup span {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border-bottom: 0;
  white-space: nowrap;
}
.steinway-row img,
.steinway-lockup img {
  height: 22px;
  width: auto;
  max-width: 22px;
  object-fit: contain;
  opacity: .92;
  background: transparent !important;
}
.steinway-row:hover b,
.steinway-lockup:hover span { color: var(--gold); }
.legal { max-width: 62ch; color: var(--muted); }
.legal p { margin-top: 12px; }
.legal h2 { margin-top: 36px; font-size: 28px; }
.brand-logo { width: min(420px, 100%); margin: 12px 0 28px; }
.site-footer a { color: var(--gold-soft); }
.steinway-row img,
.steinway-lockup img {
  height: 22px;
  width: auto;
  max-width: 22px;
}
.legal a { color: var(--gold-soft); }
.legal h2 { color: var(--gold-soft); }
.pioneer {
  margin-top: 10px;
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(20px, 3.2vw, 32px);
  letter-spacing: .08em;
  color: var(--gold-soft);
  font-weight: 500;
}
.steinway-row,
.steinway-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.steinway-row img,
.steinway-lockup img {
  height: 22px;
  width: auto;
  max-width: 22px;
}
@media (max-width: 980px) {
  .hero.hero-live {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }
  .hero-media {
    position: absolute !important;
    inset: 0;
    min-height: 100% !important;
    height: 100%;
  }
  .hero-quotes {
    top: auto !important;
    bottom: 34%;
    left: 7%;
    right: 7%;
    width: auto;
  }
  .hero-quotes blockquote {
    font-size: clamp(22px, 6.6vw, 30px);
    line-height: 1.22;
  }
  .hero-copy {
    position: absolute !important;
    inset: auto 0 0 0;
    padding: 48px 20px 26px !important;
    max-width: none;
    z-index: 6;
    background: linear-gradient(180deg, transparent, rgba(8,7,6,.9) 42%);
  }
  .hero-copy .lead { font-size: 15px; max-width: 34ch; }
  .hero-copy h1 { font-size: clamp(48px, 16vw, 72px); }
  .steinway-row, .steinway-lockup { gap: 8px; flex-wrap: nowrap; }
  .steinway-row img, .steinway-lockup img { height: 18px; max-width: 18px; }
}
@media (max-width: 980px) {
  .hero.hero-live {
    height: auto;
    min-height: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }
  .hero-media {
    position: relative !important;
    inset: auto;
    width: 100%;
    min-height: 0 !important;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .hero-yt {
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
  }
  .hero-quotes {
    top: auto !important;
    bottom: 14% !important;
    left: 6% !important;
    right: 6% !important;
    width: auto;
  }
  .hero-quotes blockquote {
    font-size: clamp(20px, 5.6vw, 28px);
    line-height: 1.28;
  }
  .hero-copy {
    position: relative !important;
    inset: auto;
    padding: 28px 22px 36px !important;
    max-width: none;
    background: transparent;
  }
}
.page-banner {
  width: 100%;
  height: min(46vh, 420px);
  margin: 8px 0 36px;
  background-size: cover;
  background-position: center 28%;
  filter: saturate(.92);
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 56px 0 8px;
  padding: 0 4vw;
}
.photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(.9);
}
@media (max-width: 980px) {
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip img { height: 160px; }
  .page-banner { height: 34vh; }
}
.page-banner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 36px;
  height: min(58vw, 420px);
  background-size: cover;
  background-position: center 30%;
}
.photo-duo {
  width: min(1080px, calc(100% - 48px));
  margin: 8px auto 40px;
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 10px;
}
.photo-duo figure, .photo-strip figure { margin: 0; }
.photo-duo img, .photo-strip img, .page-banner-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.photo-duo figure { min-height: 320px; overflow: hidden; background: #111; }
.photo-strip {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.photo-strip figure { min-height: 280px; overflow: hidden; background: #111; }
.photo-strip figcaption, .photo-duo figcaption {
  display: none;
}
@media (max-width: 980px) {
  .hero.hero-live {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }
  .hero-media {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    height: 56.25vw !important;
    min-height: 220px !important;
    max-height: 62svh;
  }
  .hero-yt {
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
  }
  .hero-quotes {
    top: auto !important;
    bottom: 14% !important;
    left: 7% !important;
    right: 10% !important;
  }
  .hero-quotes blockquote { font-size: clamp(20px, 5.8vw, 28px); }
  .hero-copy {
    position: relative !important;
    inset: auto !important;
    padding: 28px 22px 36px !important;
    background: none !important;
  }
  .photo-duo, .photo-strip { grid-template-columns: 1fr; }
  .photo-duo figure, .photo-strip figure { min-height: 240px; }
  .page-banner { width: calc(100% - 32px); height: 58vw; }
}
.hero-yt {
  width: 177.78vh !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) scale(1.12) !important;
  transform-origin: center center;
}
.hero-social {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 8;
  display: flex;
  gap: 14px;
}
.hero-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(237,217,176,.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
}
.hero-social svg { width: 16px; height: 16px; }
.hero-social a:hover { border-color: var(--gold); color: var(--gold); }
.stay { padding: 56px 0 24px; border-top: 1px solid var(--line); }
.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.stay-card { color: inherit; }
.stay-card h2 {
  font-size: 26px;
  margin-top: 8px;
  font-weight: 500;
}
.stay-card p { color: var(--muted); margin-top: 8px; }
.foot-social { display: flex; flex-wrap: wrap; gap: 14px; }
.foot-social a { color: var(--gold-soft); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 980px) {
  .hero-yt {
    width: 240vh !important;
    height: 135vh !important;
    top: 46% !important;
    transform: translate(-50%, -50%) !important;
  }
  .hero-social { left: 16px; bottom: 86px; }
  .stay-grid { grid-template-columns: 1fr; }
  .hero-quotes { bottom: 46% !important; }
}
/* Home video: contained 16:9 like Contact — no face crop */
.hero.hero-live {
  height: auto;
  min-height: 0;
  overflow: visible;
}
.hero-live .hero-media {
  position: relative;
  width: min(1080px, calc(100% - 32px));
  margin: 18px auto 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.hero-live .hero-yt {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  min-width: 0;
  min-height: 0;
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
}
.hero-live .hero-quotes {
  top: auto;
  bottom: 14%;
  right: 5%;
  left: auto;
  width: min(420px, 86%);
}
.hero-live .hero-copy {
  position: relative;
  max-width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 8px 8px;
  background: none;
}
.hero-social { left: 16px; bottom: 16px; }
.home-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: min(1080px, calc(100% - 32px));
  margin: 28px auto;
}
.home-band.single { grid-template-columns: 1fr; }
.home-photo {
  min-height: 46vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #f6efe3;
  position: relative;
}
.home-photo.tall { min-height: 62vh; background-position: center 18%; }
.home-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,7,6,.78));
}
.home-photo > div { position: relative; z-index: 1; }
.page-banner {
  height: 42vh;
  background-size: cover;
  background-position: center;
  margin: 0 0 36px;
}
@media (max-width: 980px) {
  .hero-live .hero-media {
    width: calc(100% - 24px);
    margin-top: 12px;
    aspect-ratio: 16 / 9;
    min-height: 0 !important;
    height: auto;
    position: relative !important;
    inset: auto;
  }
  .hero.hero-live { height: auto; min-height: 0; overflow: visible; }
  .hero-live .hero-yt {
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    top: 0 !important;
    left: 0 !important;
  }
  .hero-live .hero-quotes {
    bottom: 12% !important;
    left: 6% !important;
    right: 6% !important;
  }
  .hero-live .hero-copy {
    position: relative !important;
    inset: auto;
    padding: 24px 16px 8px !important;
    background: none;
  }
  .home-band { grid-template-columns: 1fr; }
}
.hero-live .hero-quotes {
  top: auto;
  bottom: 10%;
  right: 6%;
  left: 6%;
  width: auto;
  max-width: 34em;
  text-align: left;
  z-index: 6;
  pointer-events: none;
}
.hero-live .hero-quotes blockquote {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.22;
  font-weight: 500;
  color: #fbf6ea;
  letter-spacing: .01em;
  text-shadow:
    0 1px 0 rgba(8,7,6,.45),
    0 10px 28px rgba(8,7,6,.55);
}
.hero-live .hero-quotes cite {
  display: block;
  margin-top: 14px;
  color: #e4c48a;
  letter-spacing: .28em;
  font-size: 11px;
  text-transform: uppercase;
  font-style: normal;
  font-family: "Noto Sans KR", sans-serif;
}
.hero-copy .hero-social {
  position: static;
  margin: 18px 0 8px;
  left: auto;
  bottom: auto;
}
.hero-copy .hero-social a {
  background: transparent;
}
.hero-live .hero-media::after {
  background: linear-gradient(180deg, transparent 42%, rgba(8,7,6,.55) 100%);
}
@media (max-width: 980px) {
  .hero-live .hero-quotes {
    bottom: 8% !important;
    left: 6% !important;
    right: 6% !important;
  }
  .hero-live .hero-quotes blockquote {
    font-size: clamp(22px, 6vw, 30px);
  }
}
.page-banner {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}
.photo-strip {
  width: 100%;
  padding: 0;
  gap: 0;
}
.photo-strip img {
  width: 100%;
  height: 28vw;
  min-height: 180px;
  object-fit: cover;
  object-position: center 20%;
}
.home-band { width: 100%; margin-left: 0; margin-right: 0; gap: 0; }
.home-photo { min-height: 0; aspect-ratio: 16 / 9; }
.home-photo.tall { aspect-ratio: 16 / 9; min-height: 0; }
@media (max-width: 980px) {
  .wrap { width: calc(100% - 28px); }
  .about-grid {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0;
  }
  .about-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
  .about-grid > div { padding: 22px 14px 8px; }
  .page-banner { aspect-ratio: 16 / 9; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip img { height: 42vw; }
}
@media (min-width: 981px) {
  .about-grid img { height: min(78vh, 720px); }
  .page-banner { aspect-ratio: 16 / 9; max-height: 68vh; }
}
.hero-live .hero-quotes blockquote {
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-style: italic;
  font-weight: 500;
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 8px auto 72px;
}
.g-item {
  margin: 0;
  padding: 0;
  border: 0;
  background: #111;
  cursor: pointer;
  overflow: hidden;
  min-height: 240px;
  display: block;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.92);
  transition: transform .55s ease, filter .35s;
}
.g-item:hover img { transform: scale(1.04); filter: saturate(1); }
.g-item.tall { grid-row: span 2; min-height: 490px; }
.g-item.wide { grid-column: span 2; min-height: 320px; }
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item.wide { grid-column: span 2; }
  .g-item.tall { grid-row: span 1; min-height: 240px; }
}

.photo-view {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0,0,0,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 72px;
}
.photo-view[hidden] { display: none; }
.photo-view img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
}
.pv-close, .pv-nav {
  position: absolute;
  background: transparent;
  border: 0;
  color: #f3ead8;
  cursor: pointer;
}
.pv-close { top: 16px; right: 22px; font-size: 36px; line-height: 1; }
.pv-nav { top: 50%; transform: translateY(-50%); font-size: 54px; line-height: 1; padding: 10px; }
.pv-nav.prev { left: 12px; }
.pv-nav.next { right: 12px; }
.pv-count {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: .22em;
  font-size: 11px;
  color: #c4b089;
}

/* desktop polish — keep mobile as-is */
@media (min-width: 981px) {
  .photo-strip {
    width: min(1080px, calc(100% - 48px));
    margin: 48px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .photo-strip img {
    height: 42vh;
    min-height: 280px;
    max-height: 420px;
  }

  .hero-copy {
    left: 0;
    right: 0;
    max-width: none;
    width: 100%;
    align-items: center;
    text-align: center;
    padding-left: 48px;
    padding-right: 48px;
  }
  .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-copy .cta-row {
    justify-content: center;
  }
  .hero-copy .hero-social {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr 1.08fr;
    gap: 48px;
  }
  .facts {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 28rem;
  }
  .fact b {
    font-size: 34px;
    letter-spacing: .04em;
  }
  .fact span {
    font-size: 15px;
    line-height: 1.5;
  }
  .steinway-row b {
    font-size: 18px;
    letter-spacing: .16em;
  }
  .steinway-row img {
    height: 26px;
    max-width: 26px;
  }

  .page-hero p.muted {
    margin-left: auto;
    margin-right: auto;
  }

  .press-links {
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
  }
  .press-links a {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 18px 0;
  }
  .press-links b {
    font-size: 22px;
    line-height: 1.2;
  }
  .press-links span {
    text-align: left;
    font-size: 13px;
  }
}

.home-photo .home-kicker {
  margin: 0 0 8px;
  color: #edd9b0;
  letter-spacing: .34em;
  font-size: 12px;
  text-transform: uppercase;
}
.home-photo .home-title {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1;
  font-size: clamp(36px, 4.6vw, 58px);
  color: #f7efe2;
  text-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.home-photo > div { padding-bottom: 6px; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.vcard {
  width: 100%;
  padding: 0;
  cursor: pointer;
}
.vcard img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
@media (max-width: 980px) {
  .home-photo .home-title { font-size: clamp(32px, 9vw, 44px); }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (min-width: 700px) and (max-width: 980px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
}

.liner .leadish strong { display:block; font-weight:600; font-size:clamp(28px,3.2vw,40px); line-height:1.15; letter-spacing:.01em; }

@media (max-width: 980px) {
  .wrap { width: calc(100% - 28px); }
  .header-inner { min-height: 64px; width: calc(100% - 20px); }
  .logo { letter-spacing: .28em; font-size: 20px; }

  .hero-live .hero-copy {
    padding: 28px 6px 12px !important;
    text-align: center;
  }
  .hero-copy h1 { font-size: clamp(52px, 18vw, 78px); }
  .hero-copy .lead {
    margin-inline: auto;
    font-size: 16px;
    max-width: 28ch;
  }
  .hero-copy .cta-row,
  .hero-copy .hero-social {
    justify-content: center;
  }

  .home-photo {
    aspect-ratio: 4 / 5;
    min-height: 72vw;
    padding: 28px 22px 26px;
    align-items: flex-end;
  }
  .home-photo.tall {
    aspect-ratio: 4 / 5;
    min-height: 78vw;
    background-position: center 20%;
  }
  .home-photo .home-title {
    font-size: clamp(40px, 11vw, 54px);
    letter-spacing: .12em;
  }
  .home-photo .home-kicker {
    font-size: 11px;
    letter-spacing: .32em;
  }

  .page-hero { padding-top: 28px; padding-bottom: 10px; text-align: center; }
  .page-hero h1 { font-size: clamp(36px, 11vw, 52px); }
  .page-hero p.muted { margin-inline: auto; text-align: center; }

  .story p, .liner p { font-size: 16px; line-height: 1.75; }
  .liner .leadish strong { font-size: clamp(26px, 8vw, 36px); }

  .album-row { gap: 16px; }
  .press-card q { font-size: 20px; }
  .press-links a { padding: 16px 4px; }

  .stay-grid { grid-template-columns: 1fr; gap: 12px; }
  .stay-card { padding: 22px 20px; }

  .photo-strip { gap: 8px; }
  .photo-strip img { height: 48vw; object-position: center 20%; }

  .site-footer { text-align: center; gap: 10px; }
}

.mgmt-logo {
  display: block;
  width: auto;
  max-width: 220px;
  height: 28px;
  object-fit: contain;
  object-position: left center;
  margin: 18px 0 4px;
  background: transparent;
}
.mgmt-name {
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: .04em;
  color: #f6f1e8;
  line-height: 1.15;
  margin: 0 0 10px;
}
@media (max-width: 980px) {
  .mgmt-logo { height: 26px; max-width: 200px; margin: 16px auto 6px; }
  .mgmt-name { text-align: center; }
}

.contact-copy .mail {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 980px) {
  .contact-copy { padding: 28px 18px 40px; }
  .contact-copy .mail { font-size: 16px; line-height: 1.4; }
}

.contact-copy .kicker {
  font-size: 18px;
  letter-spacing: .20em;
  margin-bottom: 18px;
}
.contact-copy .muted {
  font-size: 17px;
  line-height: 1.55;
}
.contact-copy .mail {
  font-size: 22px;
}
.contact-copy .socials {
  margin-top: 22px;
  gap: 14px;
}
.mgmt-logo {
  height: 30px;
  max-width: 240px;
  margin: 8px 0 16px;
}
@media (max-width: 980px) {
  .contact-copy {
    padding: 32px 20px 44px;
    text-align: left;
  }
  .contact-copy .kicker { font-size: 16px; }
  .contact-copy .mail { font-size: 18px; }
  .mgmt-logo {
    height: 28px;
    margin: 6px 0 14px;
    margin-left: 0;
    margin-right: auto;
  }
}
