/* =========================================================================
   CORTIS fan site — bright magazine style
   ========================================================================= */

:root {
  --ink: #101014;
  --ink-soft: #5a5a66;
  --line: #e4e4ea;
  --bg: #ffffff;
  --bg-soft: #f5f5f7;

  --green: #00b84d;
  --red: #ff2e2e;
  --blue: #1f6bff;
  --yellow: #ffb800;
  --purple: #a855f7;
  --accent: var(--green);

  --wrap: 1180px;
  --radius: 14px;
  --font: "Helvetica Neue", Helvetica, Inter, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.soft-bg { background: var(--bg-soft); }

/* ------------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.logo .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
  display: inline-block;
}
.nav { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap; }
.nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); border-bottom-color: var(--green); }

/* -------------------------------------------------------- section furniture */
section { padding: 64px 0; }
.section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 5.4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  line-height: 0.95;
}
.slashes {
  flex: 1;
  height: 18px;
  min-width: 60px;
  background: repeating-linear-gradient(
    -60deg,
    var(--accent) 0 4px,
    transparent 4px 9px
  );
}
.section-head .more {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.section-head .more:hover { color: var(--accent); }
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}

/* --------------------------------------------------------------------- hero */
.hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 380px at 88% -8%, rgba(0, 184, 77, 0.16), transparent 65%),
    radial-gradient(700px 340px at 4% 108%, rgba(255, 46, 46, 0.13), transparent 62%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
.hero-grid:has(.hero-photo) { grid-template-columns: 1.25fr 1fr; }
/* The headline is sized off the viewport, so it has to come down a notch when a
   photo halves the column it lives in. */
.hero-grid:has(.hero-photo) h1 { font-size: clamp(42px, 6.2vw, 84px); }
.hero-photo {
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  margin-left: auto;
  box-shadow: 10px 10px 0 var(--green);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(52px, 11vw, 132px);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.hero h1 .alt { color: var(--green); }
.hero p.lede {
  max-width: 640px;
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 26px;
}
.hero-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-meta div span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-meta div strong { font-size: 17px; font-weight: 700; }

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: transform 0.12s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn.accent { background: var(--green); }
.btn.ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }

/* -------------------------------------------------------------- member grid */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 30px 22px;
}
.member-card { text-align: center; }
.avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  transition: transform 0.2s;
  overflow: hidden;
}

/* Photo sits on top of the colored initial; if it fails to load it's removed
   and the initial shows instead. */
.avatar img,
.cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Faces sit above centre in most promo shots, but anchoring hard to the top
     clips chins on portrait-orientation sources. 25% splits the difference. */
  object-position: center 25%;
}
.cover img { object-position: center; }
.member-card:hover .avatar { transform: scale(1.04); }
.avatar.lg { max-width: 260px; margin: 0 auto; }
.member-card h3 {
  margin: 16px 0 4px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.member-card p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------- news cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.news-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  transition: box-shadow 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--ink);
}
.news-card .stripe { height: 10px; border-radius: 4px; width: 72px; }
.news-media {
  margin: -24px -24px 4px;
  border-bottom: 2px solid var(--ink);
  border-radius: 12px 12px 0 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.news-media img { width: 100%; height: 100%; object-fit: cover; }
.news-card time {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.news-card h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.news-card p { margin: 0; font-size: 15px; color: var(--ink-soft); }

.tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

/* --------------------------------------------------------------- discography */
.release-list { display: flex; flex-direction: column; gap: 18px; }
.release {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 26px;
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  transition: box-shadow 0.18s, transform 0.18s;
}
.release:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); }
.cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px;
  line-height: 1.15;
}
.release h3 { margin: 0 0 4px; font-size: 32px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; }
.release .meta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.release .note { font-size: 15px; color: var(--ink-soft); margin: 0 0 10px; }
.tracks { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.tracks li {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--bg-soft);
}
.tracks li.title-track { background: var(--ink); color: #fff; }

/* ------------------------------------------------------------ member detail */
.member-detail {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.member-detail h1 {
  margin: 0 0 6px;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; margin: 26px 0; }
.facts div span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.facts div strong { font-size: 16px; font-weight: 700; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.chip {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 13px;
  border-radius: 999px;
  border: 2px solid var(--ink);
}
.fact-list { padding-left: 20px; margin: 0; color: var(--ink-soft); font-size: 16px; }
.fact-list li { margin-bottom: 8px; }
.member-nav { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.member-nav a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.member-nav a:hover { border-color: var(--ink); }
.member-nav a.current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* --------------------------------------------------------------------- poll */
.poll-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.poll-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 10px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  transition: border-color 0.15s, transform 0.12s;
}
.poll-option:hover { transform: translateX(3px); }
.poll-option.selected { border-color: var(--ink); }
.poll-option .swatch { width: 26px; height: 26px; border-radius: 50%; flex: none; }

.results { display: flex; flex-direction: column; gap: 14px; }
.result-row .top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 5px;
}
.bar { height: 12px; border-radius: 999px; background: var(--bg-soft); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 999px; transition: width 0.5s ease; }

.voice-form textarea {
  width: 100%;
  min-height: 96px;
  padding: 14px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 15px;
  resize: vertical;
}
.voice-form textarea:focus { outline: none; border-color: var(--ink); }
.voice-form input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 15px;
  margin-bottom: 10px;
}
.voice-form input[type="text"]:focus { outline: none; border-color: var(--ink); }

.voice {
  border-left: 4px solid var(--accent);
  background: var(--bg-soft);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.voice p { margin: 0 0 8px; font-style: italic; font-size: 15px; }
.voice .byline { font-size: 12px; font-weight: 800; color: var(--ink-soft); }

.empty { color: var(--ink-soft); font-size: 15px; font-style: italic; }

/* -------------------------------------------------------------------- misc */
.note-box {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--bg-soft);
  font-size: 14px;
  color: var(--ink-soft);
}
.note-box strong { color: var(--ink); }

.award-table { width: 100%; border-collapse: collapse; }
.award-table td { padding: 14px 10px; border-bottom: 1px solid var(--line); font-size: 15px; }
.award-table td:first-child {
  width: 70px;
  font-weight: 800;
  color: var(--ink-soft);
  font-size: 13px;
}
.award-table td:last-child { text-align: right; color: var(--ink-soft); font-size: 13px; }

/* --------------------------------------------------------------- album page */
.release-title { text-decoration: none; }
.release-title:hover { text-decoration: underline; text-underline-offset: 4px; }

.album-hero { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: center; }
.album-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.album-cover .cover {
  border: 3px solid #fff;
  border-radius: var(--radius);
  font-size: 16px;
  box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.18);
}
.album-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.btn.ghost-light { background: transparent; color: #fff; border: 2px solid #fff; }

.tracklist { list-style: none; counter-reset: none; padding: 0; margin: 0; }
.tracklist li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.tracklist li:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.tracklist .num {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
}
.tracklist .tname {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tracklist .tname em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 9px;
  border-radius: 999px;
}
.tracklist .tname small {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.track-videos { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.mv-link {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.mv-link:hover { color: var(--red); border-color: var(--red); }
.mv-link.muted { color: var(--line); border-color: transparent; }

.vid-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.vfilter {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.vfilter:hover { border-color: var(--ink); }
.vfilter.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.video-thumb .kind {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(16, 16, 20, 0.82);
  color: #fff;
  padding: 4px 9px;
  border-radius: 999px;
  pointer-events: none;
}
.video-thumb:has(iframe) .kind, .video-thumb:has(iframe) .play { display: none; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.video { cursor: pointer; }
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.video:hover .video-thumb { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--red); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-thumb .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 34px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.video-meta { padding-top: 10px; }
.video-meta strong { display: block; font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.video-meta span { font-size: 13px; color: var(--ink-soft); }

/* --------------------------------------------------------------- coer corner */
.tag-alt { background: var(--green); }

.lexicon { margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.lexicon dt {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}
.lexicon dt .say { font-size: 12px; font-weight: 700; color: var(--green); letter-spacing: 0.04em; }
.lexicon dd { margin: 0; font-size: 15px; color: var(--ink-soft); border-left: 3px solid var(--line); padding-left: 14px; }

.cuts { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.cut {
  display: block;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.15s, box-shadow 0.15s;
  background: #fff;
}
.cut:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--yellow); }
.cut .q { display: block; font-size: 17px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.3; }
.cut .n { display: block; margin-top: 7px; font-size: 13px; color: var(--ink-soft); font-style: italic; }

.board-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.picks { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.pick {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 7px 13px;
  border: 2px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
}
.pick input { display: none; }
.pick:has(input:checked) { background: var(--ink); color: #fff; border-color: var(--ink); }

.post {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
  background: #fff;
}
.post-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.post-who { font-size: 12px; font-weight: 700; color: var(--ink-soft); }
.post p { margin: 0 0 12px; font-size: 15px; }
.like {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 13px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.like:hover { border-color: var(--red); }
.like.on { background: var(--red); color: #fff; border-color: var(--red); }

/* ---------------------------------------------------------------- tour page */
.band {
  background: var(--ink);
  color: #fff;
  padding: 68px 0 60px;
  overflow: hidden;
}
.band h1 {
  margin: 0 0 16px;
  font-size: clamp(46px, 10vw, 118px);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.band .year {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
}
.band p { max-width: 620px; color: #b6b6c2; font-size: 17px; margin: 0 0 30px; }
.band .slashes { opacity: 0.9; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  border-top: 2px solid #2e2e38;
  padding-top: 24px;
}
.stat-row div span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b8b99;
}
.stat-row div strong { font-size: clamp(22px, 3.4vw, 34px); font-weight: 800; letter-spacing: -0.03em; }

.leg { margin-bottom: 48px; }
.leg-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.leg-head h3 {
  margin: 0;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}
.leg-head .count {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.date-row {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: #fff;
  transition: transform 0.15s, box-shadow 0.15s;
}
.date-row:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--legcolor, var(--ink)); }
.date-row.past { border-color: var(--line); opacity: 0.55; }
.date-row.past:hover { transform: none; box-shadow: none; }
a.date-row { color: inherit; text-decoration: none; }
.date-row .day {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.date-row .city {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.15;
}
.date-row .venue { font-size: 14px; color: var(--ink-soft); margin: 2px 0 0; }
.date-row .rownote { font-size: 12px; color: var(--ink-soft); margin: 4px 0 0; font-style: italic; }

.status-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 660px;
}

.status {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  border: 2px solid transparent;
}
.status.onsale { background: var(--ink); color: #fff; }
.status.soldout { background: transparent; color: var(--red); border-color: var(--red); }
.status.limited { background: var(--yellow); color: var(--ink); }
.status.info { background: transparent; color: var(--ink-soft); border-color: var(--line); }
.status.past-pill { background: transparent; color: var(--ink-soft); border-color: var(--line); }

/* ------------------------------------------------------------------- footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  margin-top: 40px;
  font-size: 13px;
  color: var(--ink-soft);
}
.site-footer .wrap { display: flex; gap: 20px; justify-content: space-between; flex-wrap: wrap; }
.site-footer a { text-decoration: underline; }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 860px) {
  .member-detail, .poll-layout, .board-layout { grid-template-columns: 1fr; gap: 30px; }
  .hero-grid:has(.hero-photo) { grid-template-columns: 1fr; }
  .hero-photo { max-width: 340px; }
  .avatar.lg { max-width: 200px; }
  .release { grid-template-columns: 90px 1fr; gap: 16px; }
  .album-hero { grid-template-columns: 1fr; gap: 26px; }
  .album-cover { max-width: 220px; }
  .tracklist li { grid-template-columns: 32px 1fr; }
  .tracklist .mv-link { grid-column: 2; justify-self: start; }
  .date-row { grid-template-columns: 1fr; gap: 6px; }
  .date-row .flag { text-align: left; max-width: none; }
  .site-header .wrap { height: auto; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; }
  .nav { margin-left: 0; width: 100%; gap: 16px; }
  section { padding: 44px 0; }
}
