:root {
  --bg: #08090b;
  --surface: rgba(16, 18, 24, 0.82);
  --surface-strong: rgba(22, 25, 33, 0.94);
  --text: #f3f1ec;
  --muted: #aaa7a0;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #f3d18b;
  --accent-soft: rgba(243, 209, 139, 0.18);
  --accent-alt: #b88cff;
  --accent-gold: #c59d54;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 22px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans KR", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(243, 209, 139, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(169, 106, 255, 0.14), transparent 22%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 32%),
    linear-gradient(180deg, #060709 0%, #0a0c10 42%, #050608 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
  opacity: 0.35;
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 120px;
  position: relative;
}

section[id],
.album-entry[id] {
  scroll-margin-top: 120px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 10, 14, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.34);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(243, 209, 139, 0.32);
  background: linear-gradient(145deg, rgba(243, 209, 139, 0.2), rgba(255, 255, 255, 0.04));
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.06em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.brand-copy small {
  color: var(--muted);
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  gap: 24px;
  font-size: 1rem;
  letter-spacing: 0.12em;
  font-family: "Bebas Neue", sans-serif;
}

.main-nav a,
.cta-link,
.mobile-nav a {
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.cta-link:hover,
.mobile-nav a:hover,
.main-nav a.is-active,
.mobile-nav a.is-active {
  opacity: 1;
  transform: translateY(-1px);
}

.main-nav a.is-current,
.mobile-nav a.is-current {
  opacity: 1;
}

.main-nav a,
.mobile-nav a {
  opacity: 0.72;
}

.data-placeholder {
  margin: 0;
  padding: 18px 20px;
  border: 1px dashed rgba(243, 209, 139, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.data-placeholder-error {
  border-color: rgba(219, 120, 120, 0.36);
  color: #e6c0c0;
}

.cta-link {
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(243, 209, 139, 0.18), rgba(243, 209, 139, 0.08));
  border: 1px solid rgba(243, 209, 139, 0.3);
  font-size: 0.98rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  opacity: 1;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  min-height: calc(100vh - 120px);
  padding: 72px 0 48px;
  align-items: center;
  overflow: hidden;
}

.page-hero {
  min-height: auto;
}

.home-hero {
  min-height: calc(100vh - 72px);
  padding-top: 96px;
}

body[data-page="home"] .topbar {
  padding: 13px 18px;
  border-radius: 16px;
}

body[data-page="home"] .brand-mark {
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
}

body[data-page="home"] .cta-link {
  padding: 10px 16px;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto auto;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(243, 209, 139, 0.24), rgba(243, 209, 139, 0.03) 48%, transparent 72%);
  filter: blur(10px);
  opacity: 0.9;
}

.page-intro {
  position: relative;
  padding: 84px 0 18px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.page-intro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: min(36vw, 420px);
  height: min(36vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 209, 139, 0.18), transparent 70%);
  filter: blur(10px);
  opacity: 0.9;
}

.page-kicker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.page-kicker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(243, 209, 139, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.12em;
}

.page-badge {
  position: absolute;
  right: 0;
  bottom: 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.8rem, 12vw, 10rem);
  line-height: 0.85;
  color: rgba(243, 209, 139, 0.08);
  letter-spacing: 0.08em;
  pointer-events: none;
}

body[data-page="home"] .page-shell {
  position: relative;
}

body[data-page="profile"] .page-intro h1 {
  color: var(--text);
}

body[data-page="albums"] .page-intro h1 {
  color: var(--text);
}

body[data-page="works"] .page-intro h1 {
  color: var(--text);
}

body[data-page="community"] .page-intro h1 {
  color: var(--text);
}

.page-intro h1 {
  margin: 0 0 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

.page-intro p:last-child {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  line-height: 0.9;
  text-transform: uppercase;
}

body[data-page="home"] .hero h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.9rem);
  line-height: 0.94;
  max-width: 10.5ch;
}

.hero h1 span {
  display: block;
  color: rgba(243, 241, 236, 0.68);
}

body[data-page="home"] .hero h1 span {
  margin-top: 10px;
  font-size: 0.72em;
  line-height: 1.02;
  color: rgba(243, 241, 236, 0.58);
}

.hero-text,
.section-intro,
.news-card p,
.album-card p,
.timeline-item p,
.activity-card p,
.community-panel p,
.shop-card p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

body[data-page="home"] .hero-text {
  max-width: 520px;
  margin-top: 18px;
  font-size: 1rem;
}

.hero-kicker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-kicker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 8px 12px;
  border: 1px solid rgba(243, 209, 139, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.12em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
}

.button-primary {
  background: linear-gradient(180deg, rgba(243, 209, 139, 0.24), rgba(243, 209, 139, 0.08));
  color: var(--text);
  border-color: rgba(243, 209, 139, 0.34);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.hero-stats div,
.feature-card,
.news-card,
.album-card,
.activity-card,
.community-panel,
.shop-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.hero-stats dd {
  margin: 0;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}

body[data-page="home"] .hero-panel {
  gap: 14px;
  padding-bottom: 88px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--surface);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 209, 139, 0.2), transparent 70%);
}

.feature-card-lg {
  min-height: 280px;
  background:
    linear-gradient(160deg, rgba(243, 209, 139, 0.18), rgba(20, 24, 32, 0.92)),
    var(--surface);
}

.feature-card:not(.feature-card-lg) {
  min-height: 160px;
}

body[data-page="home"] .feature-card {
  padding: 22px;
}

body[data-page="home"] .feature-card-lg {
  min-height: 236px;
}

body[data-page="home"] .feature-card:not(.feature-card-lg) {
  min-height: 134px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 96px rgba(0, 0, 0, 0.52);
  border-color: rgba(243, 209, 139, 0.28);
}

.hero-badge {
  position: absolute;
  right: -16px;
  bottom: 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(7rem, 18vw, 16rem);
  line-height: 0.8;
  color: rgba(243, 209, 139, 0.08);
  letter-spacing: 0.08em;
  pointer-events: none;
}

.hero-poster-stack {
  position: absolute;
  right: 18px;
  bottom: -8px;
  width: min(34vw, 360px);
  height: 280px;
  pointer-events: none;
}

body[data-page="home"] .hero-poster-stack {
  right: 8px;
  bottom: -2px;
  width: min(30vw, 318px);
  height: 244px;
}

.hero-poster {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(243, 209, 139, 0.24);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

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

.hero-poster-main {
  right: 12px;
  top: 0;
  width: 196px;
  height: 248px;
  transform: rotate(5deg);
  z-index: 3;
}

body[data-page="home"] .hero-poster-main {
  width: 172px;
  height: 220px;
}

.hero-poster-side {
  left: 4px;
  top: 26px;
  width: 136px;
  height: 188px;
  transform: rotate(-8deg);
  z-index: 2;
}

body[data-page="home"] .hero-poster-side {
  top: 20px;
  width: 120px;
  height: 168px;
}

.hero-poster-bottom {
  right: 88px;
  bottom: 0;
  width: 148px;
  height: 104px;
  transform: rotate(-3deg);
  z-index: 1;
}

body[data-page="home"] .hero-poster-bottom {
  right: 72px;
  width: 126px;
  height: 88px;
}

.card-label,
.news-card span,
.album-card span,
.shop-card span,
.activity-card strong {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.feature-card h2,
.feature-card h3,
.news-card h3,
.album-card h3,
.timeline-item h3,
.activity-card h3,
.community-panel h3,
.shop-card h3,
.footer strong {
  margin: 12px 0 8px;
}

.feature-card h2,
.feature-card h3,
.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
}

body[data-page="home"] .feature-card h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

body[data-page="home"] .feature-card h3 {
  font-size: 1.08rem;
}

body[data-page="home"] .hero-stats div {
  padding: 15px;
}

body[data-page="home"] .hero-stats dt {
  font-size: 0.72rem;
  margin-bottom: 6px;
}

body[data-page="home"] .hero-stats dd {
  font-size: 0.96rem;
}

.feature-card h3,
.news-card h3,
.album-card h3,
.timeline-item h3,
.activity-card h3,
.community-panel h3,
.shop-card h3 {
  font-size: 1.25rem;
}

.section {
  padding: 48px 0 24px;
}

.section-wash::before {
  content: "";
  position: absolute;
  inset: 8px auto auto -40px;
  width: min(36vw, 420px);
  height: 180px;
  background: radial-gradient(circle at left center, rgba(243, 209, 139, 0.12), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.hero-banner span,
.preview-card span,
.notice-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-banner h2,
.preview-card h3,
.notice-card h3 {
  margin: 0;
}

.hero-banner p,
.preview-card p,
.notice-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.banner-home {
  background:
    linear-gradient(130deg, rgba(233, 204, 195, 0.7), rgba(255, 250, 245, 0.92)),
    var(--surface);
}

.banner-profile {
  background:
    linear-gradient(130deg, rgba(227, 214, 198, 0.72), rgba(255, 250, 244, 0.94)),
    var(--surface);
}

.banner-albums {
  background:
    linear-gradient(130deg, rgba(232, 209, 214, 0.72), rgba(255, 250, 252, 0.94)),
    var(--surface);
}

.banner-works {
  background:
    linear-gradient(130deg, rgba(203, 221, 231, 0.74), rgba(247, 252, 255, 0.94)),
    var(--surface);
}

.banner-community {
  background:
    linear-gradient(130deg, rgba(235, 222, 187, 0.72), rgba(255, 251, 244, 0.94)),
    var(--surface);
}

.visual-mosaic,
.visual-board,
.photo-strip,
.merch-grid,
.mini-gallery,
.showcase-grid,
.album-line-grid {
  display: grid;
  gap: 18px;
}

.visual-mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mosaic-card,
.board-card,
.photo-card,
.merch-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 240px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.mosaic-card.tall {
  grid-row: span 2;
}

.mosaic-card.wide,
.board-card.wide {
  grid-column: span 2;
}

.mosaic-card img,
.board-card img,
.photo-card img,
.merch-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.mosaic-card figcaption,
.board-card figcaption,
.merch-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(24, 19, 15, 0.82) 100%);
  color: #fff;
}

.mosaic-card figcaption strong,
.mosaic-card figcaption span,
.board-card figcaption strong,
.board-card figcaption span,
.merch-card figcaption strong,
.merch-card figcaption span {
  display: block;
}

.mosaic-card figcaption span,
.board-card figcaption span,
.merch-card figcaption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.photo-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-card {
  min-height: 300px;
}

.photo-card figcaption {
  padding: 14px 6px 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.visual-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.merch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-gallery-card {
  margin: 0;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.86);
  box-shadow: var(--shadow);
}

.mini-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.mini-gallery-card figcaption {
  padding-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.album-line-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.album-line-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 320px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.88);
  box-shadow: var(--shadow);
}

.album-line-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.album-line-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(24, 19, 15, 0.82) 100%);
  color: #fff;
}

.album-line-card figcaption strong,
.album-line-card figcaption span {
  display: block;
}

.album-line-card figcaption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.showcase-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.88);
  box-shadow: var(--shadow);
}

.showcase-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.showcase-card div {
  padding: 22px;
}

.showcase-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-card h3 {
  margin: 0 0 8px;
}

.showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.split {
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-intro {
  max-width: 460px;
  margin: 0;
}

.news-grid,
.activity-grid,
.shop-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
  position: relative;
  overflow: hidden;
}

.category-card::before,
.hero-banner::after,
.news-card::after,
.activity-card::after,
.community-panel::after,
.profile-card::after,
.history-card::after,
.works-panel::after,
.keyword-card::after,
.table-card::after,
.notice-card::after,
.showcase-card::after,
.page-nav-card::after,
.route-card::after,
.highlight-card::after,
.preview-card::after,
.album-entry::after,
.shop-card::after,
.mosaic-card::after,
.board-card::after,
.photo-card::after,
.merch-card::after,
.mini-gallery-card::after,
.album-line-card::after,
.gallery-card::after,
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.035);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  pointer-events: none;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.8;
}

.category-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.category-card h3 {
  margin: 0 0 8px;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-card:hover,
.highlight-card:hover,
.route-card:hover,
.page-nav-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.52);
  border-color: rgba(243, 209, 139, 0.24);
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card,
.album-card,
.activity-card,
.shop-card,
.community-panel,
.profile-card,
.history-card,
.works-panel,
.keyword-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.news-card,
.activity-card,
.community-panel,
.profile-card,
.history-card,
.works-panel,
.keyword-card,
.table-card,
.notice-card,
.showcase-card,
.page-nav-card,
.route-card,
.highlight-card,
.preview-card,
.album-entry,
.shop-card,
.hero-banner,
.mosaic-card,
.board-card,
.photo-card,
.merch-card,
.mini-gallery-card,
.album-line-card,
.gallery-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--surface);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.hero-banner:hover,
.news-card:hover,
.activity-card:hover,
.community-panel:hover,
.profile-card:hover,
.history-card:hover,
.works-panel:hover,
.keyword-card:hover,
.table-card:hover,
.notice-card:hover,
.showcase-card:hover,
.album-entry:hover,
.shop-card:hover,
.mosaic-card:hover,
.board-card:hover,
.photo-card:hover,
.merch-card:hover,
.mini-gallery-card:hover,
.album-line-card:hover,
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.48);
  border-color: rgba(243, 209, 139, 0.24);
}

.hero,
.page-intro,
.section {
  position: relative;
}

.hero::after,
.page-intro::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(180px, 22vw);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.highlight-strip,
.route-grid,
.page-nav,
.preview-grid,
.notice-grid {
  display: grid;
  gap: 18px;
}

.highlight-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card,
.route-card,
.page-nav-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.highlight-card span,
.route-card span,
.page-nav-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.highlight-card h3,
.route-card h3,
.page-nav-card h3 {
  margin: 0 0 8px;
}

.highlight-card p,
.route-card p,
.page-nav-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.route-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.preview-card,
.notice-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.preview-card {
  min-height: 240px;
}

.preview-profile {
  background:
    linear-gradient(180deg, rgba(236, 227, 215, 0.9), rgba(255, 252, 247, 0.92));
}

.preview-albums {
  background:
    linear-gradient(180deg, rgba(245, 213, 196, 0.88), rgba(255, 250, 245, 0.92));
}

.preview-works {
  background:
    linear-gradient(180deg, rgba(212, 230, 240, 0.88), rgba(248, 252, 255, 0.92));
}

.preview-community {
  background:
    linear-gradient(180deg, rgba(235, 222, 187, 0.88), rgba(255, 251, 244, 0.92));
}

.route-card a,
.page-nav-card.next {
  color: var(--text);
}

.route-card a {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
}

.page-nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-nav-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 236, 227, 0.9));
}

.page-nav-card.next {
  background:
    linear-gradient(160deg, rgba(154, 183, 201, 0.24), rgba(255, 250, 244, 0.94));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.profile-grid,
.history-grid,
.keyword-grid,
.table-like-grid {
  display: grid;
  gap: 18px;
}

.profile-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-card,
.history-card,
.works-panel,
.keyword-card,
.table-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.profile-card.wide {
  grid-column: span 3;
}

.profile-list,
.album-meta {
  display: grid;
  gap: 10px;
}

.profile-list div,
.album-meta div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.profile-list dt,
.album-meta dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.profile-list dd,
.album-meta dd {
  margin: 0;
  font-weight: 700;
}

.profile-points {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.profile-points.compact li + li {
  margin-top: 4px;
}

.summary-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(154, 183, 201, 0.18), rgba(255, 250, 244, 0.92));
}

.summary-copy h3 {
  margin-top: 0;
}

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

.summary-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.summary-stats span,
.era-strip span,
.milestone-item span {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-stats strong {
  display: block;
  margin-top: 6px;
  font-size: 1.15rem;
}

.source-note {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.album-archive {
  display: grid;
  gap: 22px;
}

.album-jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.album-jump-list a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.92rem;
}

.album-entry {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 251, 247, 0.86);
  box-shadow: var(--shadow);
}

.album-entry.reverse {
  grid-template-columns: 1fr 320px;
}

.album-entry.reverse img {
  order: 2;
}

.album-entry.reverse .album-copy {
  order: 1;
}

.album-entry img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.album-copy span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.album-copy h3 {
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
}

.album-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 20px 0 18px;
}

.album-tracks {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.album-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--text);
  color: #fff;
  font-size: 0.92rem;
}

.glow-coral {
  background:
    linear-gradient(180deg, rgba(233, 204, 195, 0.92), rgba(255, 251, 247, 0.9));
}

.glow-gold {
  background:
    linear-gradient(180deg, rgba(235, 222, 187, 0.92), rgba(255, 251, 244, 0.9));
}

.glow-blue {
  background:
    linear-gradient(180deg, rgba(203, 221, 231, 0.94), rgba(250, 252, 255, 0.88));
}

.glow-peach {
  background:
    linear-gradient(180deg, rgba(245, 213, 196, 0.9), rgba(255, 250, 245, 0.92));
}

.glow-sky {
  background:
    linear-gradient(180deg, rgba(212, 230, 240, 0.94), rgba(247, 252, 255, 0.88));
}

.glow-rose {
  background:
    linear-gradient(180deg, rgba(232, 209, 214, 0.94), rgba(255, 250, 252, 0.9));
}

.glow-mint {
  background:
    linear-gradient(180deg, rgba(218, 235, 224, 0.94), rgba(250, 255, 252, 0.9));
}

.glow-ivory {
  background:
    linear-gradient(180deg, rgba(236, 227, 215, 0.94), rgba(255, 251, 246, 0.9));
}

.glow-latte {
  background:
    linear-gradient(180deg, rgba(227, 214, 198, 0.94), rgba(255, 251, 247, 0.9));
}

.story-section {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(24, 19, 15, 0.82) 100%);
  color: #fff;
}

.gallery-card figcaption strong,
.gallery-card figcaption span {
  display: block;
}

.gallery-card figcaption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
}

.era-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}

.era-strip div,
.milestone-item {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 28px rgba(58, 42, 32, 0.06);
}

.era-strip strong {
  display: block;
  margin-top: 8px;
}

.history-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.table-like-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.history-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.year {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pill-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-tab {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  cursor: pointer;
}

.pill-tab.is-active {
  background: var(--text);
  color: #fff;
}

.activity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.activity-card {
  min-height: 220px;
}

.activity-card.is-hidden {
  display: none;
}

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

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

.table-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.table-card h3 {
  margin: 0 0 8px;
}

.table-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.milestone-list {
  display: grid;
  gap: 14px;
}

.milestone-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: start;
}

.milestone-item h3 {
  margin: 0 0 8px;
}

.milestone-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.keyword-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.award-timeline {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
}

.award-year {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(58, 42, 32, 0.06);
}

.award-year span {
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.award-year h3 {
  margin: 0 0 8px;
}

.award-year p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.community-panel.highlight {
  background:
    linear-gradient(160deg, rgba(154, 183, 201, 0.3), rgba(255, 250, 244, 0.92));
}

.link-list,
.route-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.notice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.notice-card {
  background: rgba(255, 252, 247, 0.9);
}

.notice-card.accent {
  background:
    linear-gradient(160deg, rgba(154, 183, 201, 0.24), rgba(255, 250, 244, 0.94));
}

.notice-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.shop-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 234, 224, 0.92));
}

.promo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.38)),
    linear-gradient(140deg, rgba(243, 209, 139, 0.2), rgba(255, 255, 255, 0.02));
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: -10% auto auto -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 209, 139, 0.14), transparent 70%);
}

.promo-card strong {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(243, 209, 139, 0.24);
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.promo-card-featured {
  transform: translateY(-18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.42)),
    linear-gradient(145deg, rgba(115, 82, 177, 0.28), rgba(243, 209, 139, 0.18));
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 32px 0 0;
  padding: 32px 0 80px;
  border-top: 1px solid var(--line);
}

.footer-note {
  max-width: 360px;
  text-align: right;
}

.mobile-nav {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 30;
  display: none;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(58, 42, 32, 0.12);
}

@media (max-width: 1100px) {
  .hero,
  .news-grid,
  .activity-grid,
  .shop-grid,
  .community-layout,
  .profile-grid,
  .history-grid,
  .keyword-grid,
  .table-like-grid,
  .works-layout,
  .highlight-strip,
  .route-grid,
  .page-nav,
  .preview-grid,
  .notice-grid,
  .visual-board,
  .merch-grid,
  .mini-gallery,
  .showcase-grid,
  .album-line-grid,
  .category-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-mosaic,
  .photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .era-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .hero-badge {
    right: 0;
    font-size: clamp(6rem, 22vw, 10rem);
  }

  .hero-poster-stack {
    width: 280px;
    height: 230px;
  }

  .hero-poster-main {
    width: 166px;
    height: 216px;
  }

  .hero-poster-side {
    width: 120px;
    height: 164px;
  }

  .hero-poster-bottom {
    width: 128px;
    height: 92px;
  }

  .page-intro {
    min-height: 300px;
  }

  .page-badge {
    font-size: clamp(4.2rem, 14vw, 7rem);
  }

  .promo-card-featured {
    transform: none;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-bottom: 156px;
  }

  .topbar {
    border-radius: 28px;
    padding: 16px;
  }

  .main-nav,
  .cta-link {
    display: none;
  }

  .hero,
  .news-grid,
  .activity-grid,
  .shop-grid,
  .community-layout,
  .profile-grid,
  .history-grid,
  .keyword-grid,
  .table-like-grid,
  .works-layout,
  .highlight-strip,
  .route-grid,
  .page-nav,
  .preview-grid,
  .notice-grid,
  .visual-board,
  .merch-grid,
  .mini-gallery,
  .showcase-grid,
  .album-line-grid,
  .category-grid,
  .gallery-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .visual-mosaic,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .mosaic-card.tall,
  .mosaic-card.wide,
  .board-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .summary-band,
  .era-strip,
  .summary-stats,
  .milestone-item,
  .award-year {
    grid-template-columns: 1fr;
  }

  .gallery-card.tall,
  .gallery-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .profile-card.wide {
    grid-column: span 1;
  }

  .split,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 40px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  body[data-page="home"] .topbar {
    padding: 12px 14px;
  }

  .hero-panel {
    padding-bottom: 0;
  }

  body[data-page="home"] .hero-panel {
    gap: 12px;
  }

  .hero-poster-stack {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 190px;
    margin-top: 6px;
  }

  body[data-page="home"] .hero-poster-stack {
    height: 166px;
    margin-top: 2px;
  }

  .hero-poster-main {
    right: 18px;
    width: 138px;
    height: 184px;
  }

  body[data-page="home"] .hero-poster-main {
    right: 16px;
    width: 124px;
    height: 164px;
  }

  .hero-poster-side {
    left: 8px;
    top: 18px;
    width: 104px;
    height: 142px;
  }

  body[data-page="home"] .hero-poster-side {
    left: 10px;
    top: 16px;
    width: 92px;
    height: 124px;
  }

  .hero-poster-bottom {
    right: 94px;
    width: 112px;
    height: 78px;
  }

  body[data-page="home"] .hero-poster-bottom {
    right: 78px;
    width: 96px;
    height: 66px;
  }

  .hero-kicker {
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-kicker span {
    min-width: 78px;
    padding: 6px 10px;
    font-size: 0.84rem;
  }

  .page-intro {
    min-height: 250px;
    padding: 42px 0 8px;
  }

  .page-intro h1 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .page-kicker {
    gap: 8px;
    margin-bottom: 12px;
  }

  .page-kicker span {
    padding: 6px 10px;
    font-size: 0.84rem;
  }

  .page-badge {
    right: -4px;
    bottom: 16px;
    font-size: clamp(3.2rem, 16vw, 5.4rem);
  }

  .hero-banner,
  .feature-card,
  .highlight-card,
  .route-card,
  .preview-card,
  .page-nav-card,
  .profile-card,
  .history-card,
  .works-panel,
  .keyword-card,
  .notice-card,
  .showcase-card,
  .album-entry,
  .shop-card,
  .community-panel {
    padding: 20px;
    border-radius: 16px;
  }

  body[data-page="home"] .feature-card {
    padding: 18px;
  }

  body[data-page="home"] .feature-card-lg {
    min-height: 184px;
  }

  body[data-page="home"] .feature-card:not(.feature-card-lg) {
    min-height: 118px;
  }

  .hero-banner h2,
  .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .section {
    padding: 30px 0 12px;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 18px;
  }

  .section-intro,
  .hero-text,
  .page-intro p:last-child {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  body[data-page="home"] .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 9.6vw, 3.5rem);
    line-height: 0.98;
  }

  body[data-page="home"] .hero h1 span {
    margin-top: 8px;
    font-size: 0.68em;
    line-height: 1.06;
  }

  body[data-page="home"] .hero-text {
    max-width: 100%;
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  body[data-page="home"] .hero-actions {
    margin: 22px 0 24px;
  }

  body[data-page="home"] .hero-stats {
    gap: 10px;
  }

  body[data-page="home"] .hero-stats div {
    padding: 13px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .album-entry,
  .album-entry.reverse {
    grid-template-columns: 1fr;
  }

  .album-entry.reverse img,
  .album-entry.reverse .album-copy {
    order: initial;
  }

  .album-meta {
    grid-template-columns: 1fr;
  }

  .album-jump-list {
    gap: 8px;
  }

  .album-jump-list a {
    font-size: 0.84rem;
    padding: 8px 12px;
  }

  .mosaic-card,
  .board-card,
  .photo-card,
  .merch-card,
  .album-line-card,
  .gallery-card {
    min-height: 220px;
  }

  .mosaic-card img,
  .board-card img,
  .photo-card img,
  .merch-card img,
  .album-line-card img,
  .gallery-card img {
    min-height: 220px;
  }

  .photo-card {
    min-height: 240px;
  }

  .photo-card img {
    min-height: 240px;
  }

  .mobile-nav {
    display: flex;
    width: min(calc(100% - 24px), 460px);
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
  }

  .mobile-nav a {
    flex: 1;
    text-align: center;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
  }

  .footer-note {
    text-align: left;
  }

  .hero-badge {
    right: -6px;
    bottom: 36px;
    font-size: 5.4rem;
  }
}
