/* =========================================================
   MUSIC AGAINST WAR — 2026 rebuild
   Static, dependency-free, privacy friendly.
   ========================================================= */

:root {
  --bg:        #08080a;
  --bg-2:      #101014;
  --bg-3:      #17171c;
  --line:      #2a2a33;
  --fg:        #f4f4f5;
  --fg-dim:    #a9a9b3;
  --accent:    #ffe300;   /* MAW yellow */
  --accent-2:  #0f7ad4;   /* dove blue   */
  --accent-ink:#0a0a0a;
  --radius:    14px;
  --radius-sm: 9px;
  --maxw:      1180px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --shadow: 0 18px 50px rgba(0,0,0,.55);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 32px); }

/* visually hidden, but reachable for screen readers (RTL-safe) */
.skip, .hp {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
a.skip:focus {
  position: fixed !important; z-index: 999;
  inset-inline-start: 0; top: 0;
  width: auto; height: auto; margin: 0; padding: 12px 20px;
  clip: auto; clip-path: none; overflow: visible;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; border-radius: 0 0 8px 0;
}

/* ---------------- Header ---------------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,10,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.site-header.is-stuck { border-bottom-color: var(--line); background: rgba(8,8,10,.94); }

.header-inner {
  display: flex; align-items: center; gap: 18px;
  min-height: 68px;
}
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; color: var(--fg); }
.brand img { height: 46px; width: auto; }
.brand:hover { text-decoration: none; color: var(--fg); }
.brand-text {
  display: grid; font-family: var(--serif);
  font-size: 13px; line-height: 1.12; letter-spacing: .1em; text-transform: uppercase;
}
.brand-text span:nth-child(2) { font-size: 11px; letter-spacing: .16em; }
.brand-text span:nth-child(3) { font-size: 17px; letter-spacing: .09em; }
.brand-lg img { height: 72px; }
.brand-lg .brand-text { font-size: 19px; }
.brand-lg .brand-text span:nth-child(2) { font-size: 16px; }
.brand-lg .brand-text span:nth-child(3) { font-size: 25px; }

.nav { margin-inline-start: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--fg); font-size: 15px; font-weight: 600; letter-spacing: .02em;
  padding: 9px 13px; border-radius: 999px; white-space: nowrap;
}
.nav a:hover { background: var(--bg-3); text-decoration: none; }
.nav a.cta {
  background: var(--accent); color: var(--accent-ink);
}
.nav a.cta:hover { background: #fff; }

/* language switcher */
.lang { position: relative; flex: 0 0 auto; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-3); color: var(--fg);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 13px; font: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer;
}
.lang-btn:hover { border-color: var(--accent); }
.lang-btn svg { width: 16px; height: 16px; }
.lang-menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 6px; margin: 0; list-style: none;
  min-width: 190px; max-height: 70vh; overflow: auto;
  display: none;
}
.lang-menu.open { display: block; }
.lang-menu a {
  display: block; color: var(--fg); font-size: 15px;
  padding: 8px 12px; border-radius: 7px;
}
.lang-menu a:hover { background: var(--bg-3); text-decoration: none; }
.lang-menu a[aria-current="true"] { color: var(--accent); font-weight: 700; }

.burger {
  display: none; background: none; border: 0; color: var(--fg);
  padding: 8px; cursor: pointer; border-radius: 8px;
}
.burger svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .burger { display: inline-flex; margin-inline-start: auto; order: 3; }
  .lang { order: 2; margin-inline-start: auto; }
  .nav {
    order: 4; margin: 0; width: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    display: none; padding-bottom: 14px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; border-radius: 10px; font-size: 16px; }
  .header-inner { flex-wrap: wrap; }
}

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  padding: clamp(48px, 9vw, 104px) 0 clamp(40px, 7vw, 76px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 620px at 78% 18%, rgba(255,227,0,.13), transparent 62%),
    radial-gradient(900px 560px at 12% 88%, rgba(15,122,212,.16), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,227,0,.35); border-radius: 999px;
  padding: 6px 15px; margin: 0 0 22px;
}
.kicker .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  line-height: 1.03; letter-spacing: -.02em;
  margin: 0 0 22px; font-weight: 400;
}
.hero h1 .em { color: var(--accent); font-style: italic; }
.hero-lead { font-size: clamp(1.05rem, 1.9vw, 1.28rem); color: var(--fg-dim); max-width: 46ch; margin: 0 0 30px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 25px; border-radius: 999px;
  font-weight: 700; font-size: 16px; border: 1px solid transparent;
  cursor: pointer; font-family: inherit;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: #fff; }
.btn-ghost { border-color: var(--line); color: var(--fg); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn svg { width: 19px; height: 19px; flex: 0 0 auto; }

.hero-art { position: relative; }
.hero-art img {
  width: 100%; max-width: 460px; margin-inline: auto;
  filter: drop-shadow(0 22px 60px rgba(0,0,0,.6));
  animation: float 9s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 290px; }
}

.quote {
  position: relative; margin: clamp(30px, 5vw, 54px) 0 0;
  border-inline-start: 3px solid var(--accent);
  padding-inline-start: 22px;
}
.quote p {
  font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-style: italic; line-height: 1.45; margin: 0 0 8px;
}
.quote cite { font-style: normal; font-size: .92rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-dim); }

/* ---------------- Sections ---------------- */

section[id] { scroll-margin-top: 80px; }

.section { padding: clamp(56px, 8vw, 104px) 0; border-top: 1px solid var(--line); }
.section-head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 46px); }
.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 12px;
}
.section h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.12; letter-spacing: -.015em;
  margin: 0 0 14px;
}
.section-head p { color: var(--fg-dim); margin: 0; font-size: 1.05rem; }

.prose { max-width: 72ch; }
.prose p { margin: 0 0 1.25em; }
.prose p:last-child { margin-bottom: 0; }
.prose .lead { font-size: 1.12rem; color: var(--fg); }
.prose strong { color: var(--accent); }

/* release card */
.release {
  margin-top: clamp(30px, 4vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
  background: linear-gradient(135deg, rgba(255,227,0,.09), rgba(15,122,212,.09));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px clamp(20px, 3vw, 30px);
}
.release .tag {
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  background: var(--accent); color: var(--accent-ink);
  padding: 5px 12px; border-radius: 999px;
}
.release h3 { margin: 6px 0 0; font-size: 1.22rem; font-family: var(--serif); font-weight: 400; }
.release .links { display: flex; gap: 10px; margin-inline-start: auto; flex-wrap: wrap; }
.icon-link {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--fg);
}
.icon-link:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.icon-link svg { width: 17px; height: 17px; }

/* ---------------- Video grid ---------------- */

.video-toolbar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 26px;
}
.search {
  position: relative; flex: 1 1 260px; max-width: 380px;
}
.search input {
  width: 100%; background: var(--bg-2); color: var(--fg);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 18px 12px 44px; font: inherit; font-size: 15px;
}
.search input::placeholder { color: #6f6f7a; }
.search input:focus { border-color: var(--accent); outline: none; }
.search svg {
  position: absolute; inset-inline-start: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: #6f6f7a; pointer-events: none;
}
html[dir="rtl"] .search input { padding: 12px 44px 12px 18px; }
.count { color: var(--fg-dim); font-size: 14px; }

.videos {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  list-style: none; margin: 0; padding: 0;
}
.video-card { margin: 0; }
.video-card.hidden { display: none; }
.video-btn {
  display: block; width: 100%; padding: 0; text-align: start;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  color: inherit; font: inherit; cursor: pointer;
  transition: transform .22s ease, border-color .22s ease;
}
.video-btn:hover { transform: translateY(-4px); border-color: var(--accent); }
.video-thumb { display: block; position: relative; aspect-ratio: 16 / 9; background: #000; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.55));
}
.play {
  position: absolute; inset-inline-start: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(10,10,12,.72); border: 2px solid rgba(255,255,255,.85);
  display: grid; place-items: center; z-index: 2;
  transition: background .2s, transform .2s;
}
.video-btn:hover .play { background: var(--accent); border-color: var(--accent); transform: translate(-50%,-50%) scale(1.08); }
.play svg { width: 22px; height: 22px; margin-inline-start: 3px; fill: #fff; }
.video-btn:hover .play svg { fill: var(--accent-ink); }
.video-meta { display: block; padding: 14px 16px 16px; }
.video-title {
  font-size: 15px; font-weight: 600; line-height: 1.4; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.video-channel { display: block; font-size: 13px; color: var(--fg-dim); margin: 6px 0 0; }
.video-card iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }

.more-row { display: flex; justify-content: center; margin-top: 32px; }
.empty { color: var(--fg-dim); padding: 30px 0; }

.playlist-note { margin-top: 26px; font-size: 14px; color: var(--fg-dim); }

/* ---------------- Essay ---------------- */

.essay { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); overflow: hidden; }
.essay > summary {
  cursor: pointer; list-style: none; padding: 22px clamp(20px, 3vw, 28px);
  font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 400;
  display: flex; align-items: center; gap: 14px;
}
.essay > summary::-webkit-details-marker { display: none; }
.essay > summary::after {
  content: "+"; margin-inline-start: auto; font-size: 1.6rem; color: var(--accent); line-height: 1;
}
.essay[open] > summary::after { content: "\2013"; }
.essay > summary:hover { color: var(--accent); }
.essay-body { padding: 0 clamp(20px, 3vw, 28px) 28px; }
.essay-body .prose { max-width: 78ch; }
.lang-badge {
  font-size: 11px; font-family: var(--sans); font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--fg-dim);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px;
}

/* ---------------- Form ---------------- */

.form-shell {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 52px);
  align-items: start;
}
@media (max-width: 820px) { .form-shell { grid-template-columns: 1fr; } }

.form-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px, 3.4vw, 34px);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.field .hint { font-weight: 400; color: var(--fg-dim); font-size: 13px; }
.field input, .field textarea {
  width: 100%; background: var(--bg-3); color: var(--fg);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; font: inherit; font-size: 16px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field input[type="file"] { padding: 10px; font-size: 14px; }
.field input::file-selector-button {
  background: var(--bg); color: var(--fg); border: 1px solid var(--line);
  border-radius: 7px; padding: 7px 13px; margin-inline-end: 12px; cursor: pointer; font: inherit; font-size: 14px;
}
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--fg-dim); margin-bottom: 20px; }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; accent-color: var(--accent); }
.form-note { font-size: 13px; color: var(--fg-dim); margin: 14px 0 0; }
.form-msg { margin-bottom: 18px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 15px; display: none; }
.form-msg.ok { display: block; background: rgba(40,180,90,.12); border: 1px solid rgba(40,180,90,.45); color: #7fe0a6; }
.form-msg.err { display: block; background: rgba(220,60,60,.12); border: 1px solid rgba(220,60,60,.45); color: #ff9a9a; }

.side-list { list-style: none; margin: 0; padding: 0; }
.side-list li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.side-list li:last-child { border-bottom: 0; }
.side-list .n {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; font-weight: 800; font-size: 14px;
}
.side-list li > span:last-child { display: block; }
.side-list strong { display: block; margin-bottom: 2px; color: var(--fg); font-size: 16px; }
.side-list span span, .side-list li > span:last-child > span { display: block; color: var(--fg-dim); font-size: 14.5px; }

/* ---------------- Cards (press / shop) ---------------- */

.cards {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  list-style: none; margin: 0; padding: 0;
}
.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s, border-color .22s;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card a { color: inherit; display: flex; flex-direction: column; height: 100%; }
.card a:hover { text-decoration: none; }
.card-img { display: block; background: #fff; aspect-ratio: 4 / 3; }
.card-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.card-img.shop { aspect-ratio: 1 / 1; background: var(--bg-3); }
.card-img.shop img { object-fit: cover; padding: 0; }
.card-body { display: block; padding: 15px 17px 18px; }
.card-body strong { display: block; font-size: 15px; font-weight: 600; line-height: 1.4; }
.card-body .muted { color: var(--fg-dim); font-size: 13px; margin-top: 5px; display: block; }
.card-body .price { color: var(--accent); font-weight: 700; font-size: 15px; margin-top: 7px; display: block; }

/* wall of hope teaser */
.teaser {
  border: 1px dashed var(--line); border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px); text-align: center; background: var(--bg-2);
}
.teaser h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 3vw, 2rem); margin: 0 0 10px; }
.teaser p { color: var(--fg-dim); margin: 0 auto; max-width: 52ch; }
.teaser .badge {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-2); border: 1px solid var(--accent-2); border-radius: 999px; padding: 4px 12px; margin-bottom: 14px;
}

/* ---------------- Footer ---------------- */

.site-footer { border-top: 1px solid var(--line); padding: 46px 0 34px; background: var(--bg-2); }
.footer-grid { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.footer-grid img { height: 42px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-inline-start: auto; }
.footer-links a { color: var(--fg-dim); font-size: 14.5px; }
.footer-links a:hover { color: var(--accent); }
.copy { color: #6f6f7a; font-size: 13.5px; margin: 26px 0 0; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--fg);
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }
.socials svg { width: 18px; height: 18px; }

.to-top {
  position: fixed; inset-inline-end: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  border: 0; cursor: pointer; display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  transform: translateY(10px); box-shadow: var(--shadow);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top svg { width: 20px; height: 20px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* RTL tweaks */
html[dir="rtl"] .quote { border-inline-start: 3px solid var(--accent); }
/* media transport icons keep their direction in RTL — playback is not mirrored */
html[dir="rtl"] .play svg { margin-inline-start: 0; margin-inline-end: 3px; }

/* print */
@media print {
  .site-header, .to-top, .video-toolbar, .socials { display: none; }
  body { background: #fff; color: #000; }
}

/* ---------------- Press list ---------------- */

.press-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.press-item { border-bottom: 1px solid var(--line); }
.press-item a {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: baseline; gap: 8px 26px;
  padding: 22px 4px; color: var(--fg);
  transition: background .2s, padding .2s;
}
.press-item a:hover { text-decoration: none; background: var(--bg-2); padding-inline: 16px; }
.press-meta { display: flex; flex-direction: column; gap: 3px; }
.press-source { font-weight: 700; font-size: 15px; letter-spacing: .01em; }
.press-date { font-size: 13px; color: var(--fg-dim); font-variant-numeric: tabular-nums; }
.press-title {
  font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.35; color: var(--fg);
}
.press-item a:hover .press-title { color: var(--accent); }
.press-arrow { color: var(--fg-dim); font-size: 1.2rem; }
.press-item a:hover .press-arrow { color: var(--accent); }

@media (max-width: 720px) {
  .press-item a { grid-template-columns: 1fr auto; gap: 4px 14px; padding: 18px 4px; }
  .press-meta { flex-direction: row; gap: 10px; align-items: baseline; grid-column: 1 / -1; }
  .press-title { grid-column: 1; }
}

/* legal page */
.prose.legal h2 {
  font-family: var(--serif); font-weight: 400; font-size: 1.5rem;
  margin: 2.2em 0 .6em; padding-top: 1.2em; border-top: 1px solid var(--line);
}
.prose.legal h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose.legal h3 { font-size: 1.05rem; margin: 1.6em 0 .4em; color: var(--accent); }
.prose.legal p { font-size: 16px; color: var(--fg-dim); }

/* =========================================================
   Concept evolution — Artists for Peace & Freedom
   ========================================================= */

/* the three closing lines, used under the hero */
.triad {
  list-style: none; margin: clamp(30px, 5vw, 56px) 0 0; padding: 0;
  display: grid; gap: 10px 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border-top: 1px solid var(--line); padding-top: clamp(24px, 3vw, 34px);
}
.triad li {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  line-height: 1.3; color: var(--fg);
}
.triad li:nth-child(2) { color: var(--accent); }
.triad li::before {
  content: ""; display: block;
  width: 26px; height: 2px; background: currentColor;
  opacity: .55; margin-bottom: 12px;
}

/* “Freedom” — released recordings */
.songs {
  display: grid; gap: 20px; list-style: none; margin: 0; padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.song-card { margin: 0; }
.song-btn {
  display: block; width: 100%; padding: 0; text-align: start;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  color: inherit; font: inherit; cursor: pointer;
  transition: transform .22s ease, border-color .22s ease;
}
.song-btn:hover { transform: translateY(-4px); border-color: var(--accent); }
.song-thumb { display: block; position: relative; aspect-ratio: 16 / 9; background: #000; }
.song-thumb img { width: 100%; height: 100%; object-fit: cover; }
.song-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.6));
}
.song-meta { display: block; padding: 16px 18px 18px; }
.song-langs {
  display: block; font-family: var(--serif);
  font-size: 1.22rem; line-height: 1.3; color: var(--fg);
}
.song-credit { display: block; font-size: 14px; color: var(--fg-dim); margin-top: 4px; }
.song-date {
  display: inline-block; margin-top: 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(255,227,0,.35);
  border-radius: 999px; padding: 3px 11px;
}
.song-card iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; border-radius: var(--radius); }

/* language versions still in production */
.planned {
  margin-top: clamp(28px, 4vw, 42px);
  border: 1px dashed var(--line); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px); background: var(--bg-2);
}
.planned-head {
  display: flex; align-items: center; gap: 10px; margin: 0 0 16px;
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-2);
}
.dot-blue {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2);
  animation: pulse 2.4s ease-in-out infinite; flex: 0 0 auto;
}
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; }
.chip {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 16px; font-size: 14.5px; color: var(--fg);
  background: var(--bg-3);
}
.planned-note { margin: 16px 0 0; font-size: 13.5px; color: var(--fg-dim); }

/* footer tagline */
.tagline-foot {
  margin: 22px 0 0; font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: var(--fg-dim);
}

/* RTL: the triad rule sits on the correct side automatically (block element),
   only the hero claim needs the italic accent to stay readable */
html[dir="rtl"] .hero h1 .em { font-style: normal; }
html[dir="rtl"] .triad li::before { margin-inline-start: 0; }

/* the next song — teased, not announced */
.next-song {
  margin-top: clamp(30px, 4vw, 44px);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(15,122,212,.10), rgba(255,227,0,.05));
  padding: clamp(24px, 3.4vw, 34px);
}
.next-song-label {
  display: flex; align-items: center; gap: 10px; margin: 0 0 14px;
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-2);
}
.next-song-text {
  margin: 0; max-width: 62ch;
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45; color: var(--fg);
}
.next-song-more { margin: 14px 0 0; font-size: 14px; color: var(--fg-dim); }

.song-lead { color: var(--fg-dim); margin: -8px 0 22px; max-width: 62ch; }
