@font-face {
  font-family: "Zen Old Mincho";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/zen-old-mincho-700.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/noto-serif-jp-200.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-italic-600.woff2") format("woff2");
}
@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cinzel-400.woff2") format("woff2");
}

:root {
  --c-black: #000;
  --c-near-black: #1a1a1a;
  --c-gray: #757575;
  --c-white: #fff;
  --ff-sans: HelveticaNeue, "Helvetica Neue", Helvetica, Arial,
    "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS ゴシック", "MS Gothic",
    sans-serif;
  --ff-mono: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas,
    "Liberation Mono", Monaco, monospace;
}
* { box-sizing: border-box; }
html { font-size: 16px; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  background: var(--c-white);
  color: var(--c-near-black);
  line-height: 1.75;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--article {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  background: var(--c-black);
  color: var(--c-white);
  position: sticky;
  top: 0;
  z-index: 10;
  transition: background 0.3s ease;
}
/* frosted glass only once scrolled */
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}
/* Homepage: header floats over the hero — fully transparent at the very top
   (logo + nav sit over the hero video), frosted black once scrolled. */
.home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
}
.home .site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.55);
}
/* legibility for white logo/nav over the video while the bar is transparent */
.home .site-header:not(.is-scrolled) .site-nav a {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}
.home .site-header:not(.is-scrolled) .site-logo {
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.5));
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease;
}
.site-header.is-scrolled .site-header__inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.site-title {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-white);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.site-logo {
  display: block;
  height: 40px;
  width: auto;
  transition: height 0.3s ease;
}
.site-header.is-scrolled .site-logo {
  height: 30px;
}
/* Text logo (replaces the image): two lines sized to the old logo width, no wrap, shrinks on scroll */
.site-logo-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  color: var(--c-white);
  font-size: 28.3px;          /* base = 九州作曲家協会 size; both lines scale from this */
  line-height: 1;
  transition: font-size 0.3s ease;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.site-logo-text__ja {
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.005em;
}
.site-logo-text__en {
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 0.37em;
  line-height: 1;
  letter-spacing: 0.045em;
  margin-top: 0.22em;
}
.site-title:hover { text-decoration: none; }
.site-header.is-scrolled .site-logo-text {
  font-size: 21.2px;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.site-nav a {
  position: relative;
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 0.4rem 0.95rem;
  transition: color 0.2s ease;
}
/* thin vertical divider between nav items */
.site-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}
/* animated underline on hover */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.05rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.site-nav a:hover { color: var(--c-white); }
.site-nav a:hover::after { transform: scaleX(1); }

.site-footer {
  background: var(--c-black);
  color: var(--c-white);
  padding: 4rem 1.5rem 1.2rem;
}
.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.6fr;
  gap: 2rem;
}
.site-footer__brand p,
.footer-note {
  color: var(--c-gray);
  font-size: 11px;
  line-height: 1.45;
  margin: 0.8rem 0 0;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--c-white);
  text-decoration: none;
}
.footer-brand:hover { text-decoration: none; }
.footer-mark {
  display: block;
  height: 64px;
  width: auto;
  flex: none;
}
.site-footer__brand .site-logo-text {
  font-size: 26px;
}
.footer-column h2 {
  color: var(--c-white);
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 11px;
  letter-spacing: 0.083em;
  line-height: 1.18;
  margin: 0 0 0.9rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 1;
}
.footer-column--wide ul { columns: 2; }
.footer-column li { break-inside: avoid; margin: 0 0 0.45rem; }
.footer-column a {
  color: var(--c-white);
  font-size: 12px;
  text-decoration: none;
}
.footer-column a:hover { text-decoration: underline; }
.footer-note {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--c-gray);
  text-align: center;
}

main { padding: 0; }
h1, h2, h3, h4 {
  color: var(--c-black);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
}
a { color: var(--c-black); }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.mono-label,
.cat-label {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.083em;
  text-transform: uppercase;
  color: var(--c-black);
  margin: 0 0 0.6rem;
  line-height: 1.18;
}
.cat-label a { color: var(--c-black); text-decoration: none; }
.cat-label a:hover { text-decoration: underline; }

.post-date {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 11px;
  letter-spacing: 0.083em;
  color: var(--c-gray);
  margin: 0.5rem 0 0;
}

.section-heading {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.031em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--c-black);
  padding-bottom: 0.6rem;
  margin: 3rem 0 1.4rem;
}
.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0.4rem 0 0.6rem;
}
.lead {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--c-gray);
  text-transform: uppercase;
  margin: 0 0 2.4rem;
}

.button-link,
.text-link,
.see-more a,
.post-footer-nav a {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 12px;
  letter-spacing: 0.083em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}
.button-link {
  display: inline-block;
  color: var(--c-white);
  background: var(--c-black);
  border: 1px solid var(--c-white);
  border-radius: 2px;
  padding: 0.75rem 1.4rem;
}
.text-link { color: var(--c-black); }
.contact-button {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.7rem 1.7rem;
  border: 1px solid var(--c-black);
  color: var(--c-black);
  background: transparent;
  text-decoration: none;
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-button:hover {
  background: var(--c-black);
  color: var(--c-white);
}

.home-hero {
  position: relative;
  min-height: 100vh;
  background: var(--c-near-black);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* ZHA-style bottom-weighted scrim: video stays bright up top, headline reads at the bottom */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.04) 36%,
    rgba(0, 0, 0, 0.52) 78%,
    rgba(0, 0, 0, 0.80) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.home-hero__media {
  position: absolute;
  inset: 0;
  background: var(--c-near-black);
  z-index: 0;
}
.home-hero__poster,
.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.home-hero__poster { z-index: 0; }
.home-hero__video  { z-index: 1; }
.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem 4.5rem;
}
.home-hero__kicker {
  display: inline-block;
  color: var(--c-white);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 19px);
  letter-spacing: 0.06em;
  margin: 0 0 1.1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}
.home-hero h1 {
  color: var(--c-white);
  font-family: "Noto Serif JP", serif;
  max-width: none;
  font-size: clamp(22px, 4.4vw, 58px);
  font-weight: 200;
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin: 0;
  text-shadow: 0 1px 28px rgba(0, 0, 0, 0.45);
  word-break: keep-all;
}
.home-hero__lead-en {
  color: var(--c-white);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(13px, 1.5vw, 19px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 1.3rem 0 0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}
.home-hero__since {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 0.85rem;
  vertical-align: middle;
  color: var(--c-white);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 24px);
  letter-spacing: 0.05em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.home-hero__since-line {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}

.home-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.home-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--c-gray);
}
.home-section__intro {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}
.home-section__intro h2 {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.031em;
  line-height: 1.55;
  margin: 0;
}
.home-section__intro a {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 11px;
  letter-spacing: 0.083em;
  text-transform: uppercase;
  text-decoration: none;
}

.story-grid {
  display: grid;
  gap: 1.5rem;
}
.story-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.story-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.story-grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* Video archive (RECORDINGS) section */
.video-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.75rem;
  align-items: start;
}
.video-stage { display: flex; flex-direction: column; }
.video-stage__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--c-near-black);
  overflow: hidden;
  cursor: pointer;
}
.video-stage__thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-stage__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.video-stage__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
}
.video-stage__frame:hover .video-stage__play {
  background: rgba(0, 0, 0, 0.78);
  transform: scale(1.06);
}
.video-stage__iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
.video-stage__title {
  margin: 1rem 0 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--c-black);
}
.video-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 430px;
  overflow-y: auto;
  border-top: 1px solid var(--c-black);
}
.video-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--c-gray);
  padding: 0.75rem 0.4rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.video-item:hover { background: rgba(0, 0, 0, 0.04); }
.video-item.is-active { background: rgba(0, 0, 0, 0.06); }
.video-item__num {
  flex: none;
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 12px;
  color: var(--c-gray);
  width: 1.7em;
}
.video-item__thumb {
  flex: none;
  width: 108px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--c-near-black);
}
.video-item__title {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--c-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-list::-webkit-scrollbar { width: 6px; }
.video-list::-webkit-scrollbar-thumb { background: var(--c-gray); border-radius: 3px; }
@media (max-width: 880px) {
  .video-layout { grid-template-columns: 1fr; }
  .video-list { max-height: 360px; }
}
.story-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--c-near-black);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.story-card__media:hover img { transform: scale(1.03); }
.story-card__date,
.story-card__excerpt,
.concert-card__date span,
.feature-link span {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 11px;
  letter-spacing: 0.083em;
  color: var(--c-gray);
  font-style: normal;
}
.story-card__title {
  font-size: 20px;
  line-height: 1.45;
  margin: 0.35rem 0 0.35rem;
}
.story-card__title a,
.concert-card h3 a,
.feature-link {
  color: var(--c-black);
  text-decoration: none;
}
.story-card__excerpt,
.concert-card p,
.feature-link em {
  display: block;
  color: var(--c-near-black);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  font-style: normal;
}

.concert-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--c-gray);
}
.concert-card {
  padding: 1.6rem 1.2rem 0 1.2rem;
  border-left: 1px solid var(--c-gray);
}
.concert-card:first-child { border-left: 0; }
.concert-card__date {
  margin-bottom: 1.2rem;
}
.concert-card__date strong {
  display: block;
  color: var(--c-black);
  font-size: 44px;
  line-height: 1;
  font-weight: 400;
}
.concert-card h3 {
  font-size: 17px;
  line-height: 1.45;
  margin: 0 0 0.45rem;
}

/* Concerts (NOTABLE EVENTS): full-bleed black band */
.home-section--concerts {
  background: var(--c-black);
  color: var(--c-white);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4.5rem calc(50vw - 50%);
  border-bottom: 0;
}
.home-section--concerts .mono-label { color: rgba(255, 255, 255, 0.65); }
.home-section--concerts .home-section__intro h2,
.home-section--concerts .home-section__intro a { color: var(--c-white); }
.home-section--concerts .concert-row { border-top-color: rgba(255, 255, 255, 0.28); }
.home-section--concerts .concert-card { border-left-color: rgba(255, 255, 255, 0.18); }
.home-section--concerts .concert-card__date strong,
.home-section--concerts .concert-card h3 a { color: var(--c-white); }
.home-section--concerts .concert-card__date span { color: rgba(255, 255, 255, 0.6); }
.home-section--concerts .concert-card p { color: rgba(255, 255, 255, 0.72); }

/* whole concert card is clickable (stretched link over all of its text) */
.concert-card { position: relative; padding-bottom: 1.6rem; }
.concert-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.home-section--concerts .concert-card:hover { background: rgba(255, 255, 255, 0.06); }
.home-section--concerts .concert-card:hover h3 a { text-decoration: underline; }

.home-about {
  border-bottom: 1px solid var(--c-gray);
}
.home-about__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.home-about__head {
  text-align: center;
  margin-bottom: 2.4rem;
}
.home-about__title-ja {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-black);
  margin: 1.6rem 0 0.5rem;
}
.home-about__rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-black);
}
.home-about__head h2 {
  text-align: center;
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
}
.home-about__body {
  text-align: left;
}
.home-about__body p {
  margin: 0 0 1.3rem;
  line-height: 1.95;
}
.home-about__body p:last-child {
  margin-bottom: 0;
}

.about-association {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  border-bottom: 1px solid var(--c-gray);
}
.about-association__media {
  min-height: 460px;
  background: var(--c-near-black);
}
.about-association__media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: left center;
}
.about-association__body {
  padding: 5rem min(7vw, 6rem);
}
.about-association__body h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.about-association__body p {
  max-width: 620px;
  margin: 0 0 1.6rem;
}
.stat-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.stat-list li {
  border-top: 2px solid var(--c-black);
  padding-top: 0.8rem;
}
.stat-list span {
  display: block;
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 11px;
  letter-spacing: 0.083em;
  color: var(--c-gray);
}
.stat-list strong {
  display: block;
  color: var(--c-black);
  font-size: 24px;
  line-height: 1.35;
}

.feature-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.feature-link {
  border-top: 2px solid var(--c-black);
  padding-top: 1rem;
  min-height: 170px;
}
.feature-link strong {
  display: block;
  font-size: 24px;
  line-height: 1.35;
  margin: 0.5rem 0 0.8rem;
}

.archive-index,
.category-index,
.pages-index,
.pages-overview {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

/* SITE MAP page: full-width link rows, no short wrapping */
.pages-index .list-link {
  display: block;
  padding: 1.1rem 0;
}
.pages-index .list-title {
  white-space: nowrap;
}

/* Journal page: centered, enlarged clickable cover thumbnails */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2.4rem 1.5rem;
  justify-items: center;
  margin: 1.8rem 0 1rem;
}
.journal-card {
  display: block;
  max-width: 240px;
  text-align: center;
  text-decoration: none;
  color: var(--c-near-black);
}
.journal-card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.journal-card:hover img {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}
.journal-card__label {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.post-list { list-style: none; padding: 0; margin: 0; }
.list-item { border-bottom: 1px solid var(--c-gray); }
.list-item:first-child { border-top: 1px solid var(--c-gray); }
.list-link {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  text-decoration: none;
  color: var(--c-near-black);
}
.list-link:hover .list-title { text-decoration: underline; }
.list-date {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 11px;
  letter-spacing: 0.083em;
  color: var(--c-gray);
  font-variant-numeric: tabular-nums;
}
.list-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-black);
  line-height: 1.4;
}
.cat-chip {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 10px;
  letter-spacing: 0.083em;
  text-transform: uppercase;
  color: var(--c-gray);
  padding: 0;
}

.see-more {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--c-black);
}
.see-more a:hover { text-decoration: underline; }

.year-block { margin-bottom: 3rem; }
.year-heading {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--c-black);
  padding-bottom: 0.5rem;
  margin: 2rem 0 0.8rem;
  display: flex; align-items: baseline; gap: 1rem; justify-content: space-between;
}
.year-count {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.083em;
  color: var(--c-gray);
}

.post-header {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--c-gray);
  margin-bottom: 2rem;
}
.post-title {
  font-size: 32px;
  line-height: 1.625;
  font-weight: 700;
  margin: 0.4rem 0 0.6rem;
  color: var(--c-black);
}
.post-hero {
  margin: 0 0 2rem;
}
.post-hero img { width: 100%; height: auto; display: block; }
.post-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-near-black);
}
.post-body p { margin: 0 0 1.4rem; }
.post-body h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 2.4rem 0 1rem;
}
.post-body h3 { font-size: 18px; font-weight: 700; margin: 2rem 0 0.8rem; }
.post-body img { margin: 1.4rem auto; max-width: 100%; }
.post-body figure { margin: 1.4rem 0; }
.post-body a { color: var(--c-black); }
.post-body blockquote {
  border-left: 3px solid var(--c-black);
  padding-left: 1.2rem;
  margin: 1.4rem 0;
  color: var(--c-near-black);
  font-style: normal;
}
.post-body table { border-collapse: collapse; margin: 1.2rem 0; width: 100%; }
.post-body table td, .post-body table th {
  padding: 0.5rem 0.8rem;
  border-bottom: 1px solid var(--c-gray);
  vertical-align: top;
  font-size: 15px;
}
.post-body ul, .post-body ol { padding-left: 1.5rem; margin: 0 0 1.4rem; }
.post-body [style] {
  color: var(--c-near-black) !important;
  background: var(--c-white) !important;
  border-color: var(--c-black) !important;
}
.post-body .wp-block-button__link, .post-body .wp-element-button {
  display: inline-block;
  background: var(--c-black);
  color: var(--c-white) !important;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.083em;
  text-transform: uppercase;
  border-radius: 0;
}

.tag-list { margin: 2rem 0 0; }
.tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 11px;
  letter-spacing: 0.083em;
  color: var(--c-gray);
  margin-right: 0.8rem;
}

.attachments {
  margin-top: 3rem;
  border-top: 2px solid var(--c-black);
  padding-top: 1.5rem;
}
.label {
  font-family: var(--ff-mono);
  font-feature-settings: normal;
  font-size: 12px;
  letter-spacing: 0.083em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 1rem;
}
.attach-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.8rem;
}
.attach-grid li {
  background: var(--c-black); overflow: hidden; aspect-ratio: 1/1;
}
.attach-grid li.file {
  background: transparent; aspect-ratio: auto; padding: 0.5rem 0; border-bottom: 1px solid var(--c-gray);
}
.attach-grid img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.post-footer-nav {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid var(--c-black);
  display: flex; gap: 2rem;
}
.post-footer-nav a:hover { text-decoration: underline; }

.page-link-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.6rem 1.5rem;
}
.page-link-list li { border-bottom: 1px solid var(--c-gray); padding: 0.8rem 0; }
.page-link-list a {
  color: var(--c-black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}
.page-link-list a:hover { text-decoration: underline; }

@media (max-width: 960px) {
  .site-footer__inner,
  .about-association,
  .home-section__intro {
    grid-template-columns: 1fr;
  }
  .story-grid--four,
  .story-grid--three,
  .story-grid--five,
  .concert-row,
  .feature-link-grid,
  .stat-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .concert-card:nth-child(odd) { border-left: 0; }
  .home-hero { min-height: 560px; }
  .home-hero h1 { font-size: 40px; }
}

@media (max-width: 700px) {
  .site-header__inner { padding: 0.75rem 1rem; }
  .site-title { white-space: normal; }
  .site-nav { gap: 0.85rem; }
  .home-hero { min-height: 520px; }
  .home-hero__content { padding: 4rem 1rem; }
  .home-hero h1 { font-size: 32px; }
  .home-shell,
  .container,
  .container--article { padding: 0 1rem; }
  .home-section { padding: 3rem 0; }
  .story-grid--four,
  .story-grid--three,
  .story-grid--five,
  .concert-row,
  .feature-link-grid,
  .stat-list {
    grid-template-columns: 1fr;
  }
  .concert-card,
  .concert-card:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid var(--c-gray);
  }
  .concert-card:first-child { border-top: 0; }
  .about-association__body { padding: 3rem 1rem; }
  .about-association__media,
  .about-association__media img { min-height: 320px; }
  .footer-column--wide ul { columns: 1; }
  .footer-brand { font-size: 44px; }
  .section-title { font-size: 28px; }
  .post-title { font-size: 26px; line-height: 1.4; }
  .list-link { grid-template-columns: 90px 1fr; gap: 0.6rem; }
  .list-link .cat-chip { grid-column: 2; margin-top: 0.2rem; }
  .list-title { font-size: 16px; }
}

/* ============================================================
   Multilingual variants (EN/KO/ZH/DE/FR)
   ============================================================ */
@font-face{font-family:"Oswald";font-style:normal;font-weight:200;font-display:swap;
  src:url("../fonts/oswald-200.woff2") format("woff2");}
@font-face{font-family:"Noto Serif KR";font-style:normal;font-weight:200;font-display:swap;
  src:url("../fonts/noto-serif-kr-200.woff2") format("woff2");}
@font-face{font-family:"Noto Serif SC";font-style:normal;font-weight:200;font-display:swap;
  src:url("../fonts/noto-serif-sc-200.woff2") format("woff2");}

/* --- Logo: Latin (EN/DE/FR) — Oswald ExtraLight, all caps, 2 lines same size --- */
.site-logo-text--latin{font-size:22px;}
.site-logo-text--latin .site-logo-text__l1,
.site-logo-text--latin .site-logo-text__l2{
  font-family:"Oswald",sans-serif;font-weight:200;font-size:1em;line-height:1.06;
  text-transform:uppercase;letter-spacing:0.04em;}
.site-header.is-scrolled .site-logo-text--latin{font-size:16.5px;}
/* --- Logo: Asian line-1 fonts --- */
.site-logo-text--ko .site-logo-text__ja{font-family:"Noto Serif KR",serif;}
.site-logo-text--zh .site-logo-text__ja{font-family:"Noto Serif SC",serif;}

/* --- Hero headline fonts for KO/ZH --- */
.home-hero--ko h1{font-family:"Noto Serif KR",serif;}
.home-hero--zh h1{font-family:"Noto Serif SC",serif;}
/* Alphabet hero: question becomes the headline; Since sits inline */
.home-hero--latin .home-hero__since{margin-left:0.6rem;}

/* --- About header: alphabet = 1 line only (hide the big translated line) --- */
.home-about--latin .home-about__title-ja{display:none;}
/* Without the JA title line, vertically center the h2 between the two rules */
.home-about--latin .home-about__head h2{margin:1.6rem 0;}

/* --- Language switcher (header + footer) --- */
.lang-switch{display:flex;flex-wrap:wrap;align-items:center;gap:0.55rem;
  font-family:var(--ff-mono);font-feature-settings:normal;font-size:11px;letter-spacing:0.08em;}
.lang-switch a{color:rgba(255,255,255,0.6);text-decoration:none;transition:color .2s ease;}
.lang-switch a:hover{color:var(--c-white);text-decoration:none;}
.lang-switch a.is-current{color:var(--c-white);font-weight:700;}
.home .site-header:not(.is-scrolled) .lang-switch a{text-shadow:0 1px 8px rgba(0,0,0,0.55);}
.site-header__lang{margin-left:auto;}
.site-footer__lang{margin-top:1.4rem;}
.site-footer__lang a{color:rgba(255,255,255,0.55);}
.site-footer__lang a.is-current{color:var(--c-white);}
@media (max-width:900px){ .site-header__lang{order:3;width:100%;margin-left:0;} }
