/* ==========================================================================
   DE MANNE: Official Website
   Design system: near-black editorial canvas, warm gold accent,
   Archivo (display/UI) + Cormorant Garamond (editorial serif) + Pinyon Script (wordmark only)
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --bg: #0c0c0d;
  --bg-alt: #131313;
  --surface: #1a1a1a;
  --surface-2: #202020;
  --line: rgba(245, 241, 234, 0.12);
  --line-strong: rgba(245, 241, 234, 0.22);
  --white: #f6f2ea;
  --muted: #a9a39a;
  --muted-2: #78726a;
  --gold: #c9a24b;
  --gold-bright: #e0bd6e;
  --oxblood: #5c1f1f;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.display-1 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(48px, 9vw, 128px);
}
.display-2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
  font-size: clamp(34px, 5.5vw, 68px);
}
.display-3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  font-size: clamp(26px, 3.4vw, 40px);
}
.lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.3;
}
.body-lg {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
  color: var(--white);
}
.body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}
.small-caps {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.logotype {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex: 0 0 auto;
}
.logo-mark {
  height: 54px;
  width: auto;
  aspect-ratio: 807 / 637;
  flex: 0 0 auto;
  display: block;
  transition: opacity .3s var(--ease);
}
a.logotype:hover .logo-mark { opacity: 0.82; }
.logo-mark--footer { height: 76px; margin-bottom: 18px; }
.site-header.is-scrolled .logo-mark { height: 42px; }
@media (max-width: 940px) {
  .logo-mark { height: 38px; }
  .logo-mark--footer { height: 64px; }
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section {
  padding: clamp(64px, 10vw, 140px) 0;
  position: relative;
}
.section--alt { background: var(--bg-alt); }
.section--tight { padding: clamp(40px, 6vw, 80px) 0; }
.section-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 64px);
}
.section-head > .eyebrow { margin-bottom: 14px; display: block; }
.section-head > .display-2 { margin-bottom: 18px; }
.rule {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--black); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 16px var(--gutter);
  background: linear-gradient(to bottom, rgba(10,10,10,0.85), transparent);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: var(--line);
}
.nav-primary {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links {
  display: flex;
  gap: 22px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--white); border-color: var(--gold); }
.nav-lang {
  display: flex;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.nav-lang button {
  background: none;
  border: none;
  color: var(--muted-2);
  padding: 4px;
}
.nav-lang button.is-active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 22px;
  position: relative;
  z-index: 210;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: all .3s var(--ease);
}
.nav-toggle::before { top: 0; }
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle::after { bottom: 0; }
.nav-toggle.is-open::before { transform: translateY(10px) rotate(45deg); }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::after { transform: translateY(-11px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-links { position: fixed; inset: 0; z-index: 200; background: var(--black);
    flex-direction: column; justify-content: center; align-items: center; gap: 26px;
    transform: translateY(-100%); opacity: 0; transition: transform .5s var(--ease), opacity .4s var(--ease);
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; }
  .nav-links a { font-size: 22px; }
  .nav-lang { display: none; }
  .nav-links.is-open ~ .nav-lang-mobile { display: flex; }
  .nav-toggle { display: block; }
  .nav-right .btn-primary { padding: 10px 16px; font-size: 11px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.55) 42%, rgba(8,8,8,0.25) 65%, rgba(8,8,8,0.55) 100%),
    linear-gradient(to right, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.05) 45%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 var(--gutter) clamp(56px, 8vw, 96px);
}
.hero-tags {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title { margin-bottom: 20px; }
.hero-sub { margin-bottom: 14px; }
.hero-desc { max-width: 480px; color: var(--muted); margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(28px, 4vw, 48px);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 34px; background: var(--line-strong); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold); animation: scrollcue 2.2s var(--ease) infinite;
}
@keyframes scrollcue { to { top: 100%; } }
@media (max-width: 640px) { .scroll-cue { display: none; } }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.card:hover { border-color: var(--line-strong); }
.stat-card { text-align: left; padding: 28px 24px; border-left: 2px solid var(--gold); background: var(--surface); }
.stat-card .num { font-family: var(--font-display); font-weight: 900; font-size: clamp(32px, 3.6vw, 46px); color: var(--gold); line-height: 1; }
.stat-card .label { margin-top: 8px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- Media frame / image treatments ---------- */
.frame { position: relative; overflow: hidden; background: var(--surface); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.frame:hover img { transform: scale(1.045); }
.ratio-portrait { aspect-ratio: 4 / 5; }
.ratio-square { aspect-ratio: 1 / 1; }
.ratio-wide { aspect-ratio: 16 / 9; }
.ratio-tall { aspect-ratio: 3 / 4; }

/* ---------- Current era / EP teaser ---------- */
.era-section {
  position: relative;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.era-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}
@media (max-width: 880px) { .era-grid { grid-template-columns: 1fr; } }
.era-art { position: relative; }
.era-art img { width: 100%; box-shadow: 0 40px 90px rgba(0,0,0,0.6); }

/* ---------- Music list ---------- */
.track-row {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.track-row.has-art { grid-template-columns: 72px 1fr auto auto; }
.track-row .art {
  width: 72px; height: 72px; object-fit: cover; display: block;
  background: var(--surface); border: 1px solid var(--line);
}
.track-row .idx { font-family: var(--font-display); font-weight: 800; color: var(--muted-2); font-size: 14px; }
.track-row .title { font-weight: 700; font-size: 17px; }
.track-row .meta { color: var(--muted); font-size: 14px; }
.track-row .year { color: var(--muted-2); font-size: 13px; }
@media (max-width: 640px) {
  .track-row { grid-template-columns: 32px 1fr; row-gap: 6px; }
  .track-row.has-art { grid-template-columns: 56px 1fr; }
  .track-row .art { width: 56px; height: 56px; }
  .track-row .year, .track-row .meta { grid-column: 2; }
  .track-row > .btn { grid-column: 2; justify-self: start; }
}

/* ---------- Release cards (cover art + details) ---------- */
.release-card { background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.release-card .frame { border-bottom: 1px solid var(--line); }
.release-card .release-body { padding: 24px; }
.release-card .release-title { font-weight: 800; font-size: 20px; margin: 6px 0 8px; }
.tracklist { list-style: none; margin: 16px 0 0; padding: 0; }
.tracklist li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px;
}
.tracklist li span:last-child { color: var(--muted-2); text-align: right; }
.credits { margin-top: 14px; font-size: 12px; color: var(--muted-2); line-height: 1.6; }

/* ---------- Collaborator tiles ---------- */
.collab-tile {
  padding: 26px; border: 1px solid var(--line); background: var(--surface);
  border-top: 2px solid var(--gold);
}
.collab-tile .name { font-weight: 800; font-size: 18px; margin-bottom: 6px; }
.collab-tile .work { color: var(--muted); font-size: 14px; }

/* ---------- Award cards ---------- */
.award-card { background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.award-card .frame { aspect-ratio: 4 / 3; }
.award-card .frame img { object-position: center 30%; }
.award-body { padding: 22px 24px 24px; }
.award-body .eyebrow { display: block; margin-bottom: 8px; }
.award-body .title { font-weight: 800; font-size: 18px; line-height: 1.25; }
.award-body .sub { margin-top: 6px; color: var(--muted); font-size: 14px; }
.badge {
  display: inline-block; padding: 4px 10px; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700; border-radius: var(--radius);
  margin-bottom: 10px;
}
.badge--win { background: var(--gold); color: var(--black); }
.badge--nom { border: 1px solid var(--gold); color: var(--gold); }

/* ---------- Media poster gallery ---------- */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .media-grid { grid-template-columns: 1fr; } }
.media-card { border: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.media-card .frame { aspect-ratio: 1 / 1; }
.media-card .frame img { object-fit: contain; background: var(--bg-alt); }
.media-card .media-body { padding: 16px 18px 18px; }
.media-card .outlet { font-weight: 800; font-size: 15px; }
.media-card .detail { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* ---------- Performance list ---------- */
.perf-item {
  display: grid; grid-template-columns: 110px 1fr; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid var(--line); align-items: start;
}
.perf-item .when { font-family: var(--font-display); font-weight: 800; color: var(--gold); font-size: 15px; line-height: 1.3; }
.perf-item .where { font-weight: 700; font-size: 17px; }
.perf-item .what { color: var(--muted); font-size: 14px; margin-top: 4px; }
@media (max-width: 560px) { .perf-item { grid-template-columns: 1fr; gap: 6px; } }

.platform-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.platform-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1px solid var(--line-strong);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.platform-pill:hover { border-color: var(--gold); color: var(--gold); }
.platform-pill.is-soon { color: var(--muted-2); border-color: var(--line); cursor: default; }
.platform-pill.is-soon:hover { color: var(--muted-2); border-color: var(--line); }
.platform-pill.is-soon small { font-size: 10px; letter-spacing: 0.06em; text-transform: none; font-weight: 500; }

/* ---------- Upcoming events ---------- */
.event-item {
  display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.event-date {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 10px 0; border: 1px solid var(--line-strong); border-top: 2px solid var(--gold); background: var(--surface);
}
.event-date .d { font-family: var(--font-display); font-weight: 900; font-size: 24px; line-height: 1; }
.event-date .m { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.event-date .y { font-size: 10px; color: var(--muted-2); margin-top: 2px; }
.event-title { font-weight: 800; font-size: 18px; }
.event-where { color: var(--muted); font-size: 14px; margin-top: 4px; }
.event-btn { padding: 10px 18px; }
.events-empty { color: var(--muted); font-size: 15px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 560px) {
  .event-item { grid-template-columns: 64px 1fr; }
  .event-item .event-btn { grid-column: 2; justify-self: start; }
}

/* ---------- Video grid ---------- */
.video-card { position: relative; }
.video-card .frame { cursor: pointer; }
.play-btn {
  position: absolute; inset: 0; margin: auto; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(246,242,234,0.55);
  background: rgba(10,10,10,0.35); backdrop-filter: blur(2px);
  transition: all .3s var(--ease);
}
.video-card:hover .play-btn { background: var(--gold); border-color: var(--gold); }
.play-btn svg { width: 16px; height: 16px; fill: var(--white); }
.video-card:hover .play-btn svg { fill: var(--black); }
.video-meta { padding-top: 16px; }
.video-meta .title { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.video-meta .type { font-size: 12px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Timeline (Journey) ---------- */
.timeline { position: relative; margin-top: 40px; }
.timeline::before {
  content: ""; position: absolute; left: 110px; top: 0; bottom: 0; width: 1px; background: var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 30px 0;
  position: relative;
}
.timeline-item::after {
  content: ""; position: absolute; left: 106px; top: 38px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--bg);
}
.timeline-year { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--gold); }
.timeline-body .title { font-weight: 700; font-size: 19px; margin-bottom: 8px; }
@media (max-width: 640px) {
  .timeline::before { left: 54px; }
  .timeline-item { grid-template-columns: 54px 1fr; gap: 18px; }
  .timeline-item::after { left: 50px; }
  .timeline-year { font-size: 16px; }
}

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--white);
  padding: 14px 16px;
  font-size: 15px;
  border-radius: var(--radius);
  transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { margin-top: 18px; color: var(--muted-2); font-size: 13px; }

/* ---------- Contact tiles ---------- */
.contact-tile {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.contact-tile .eyebrow { margin-bottom: 16px; }
.contact-line { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.contact-line:last-child { border-bottom: none; }
.contact-line a { color: var(--white); font-weight: 600; }
.contact-line a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vw, 90px) 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 940px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: 14px; }
.footer-col a:hover { color: var(--gold); }
.footer-col .footer-sub { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.footer-brand .logotype { margin-bottom: 4px; }
.footer-brand p { color: var(--muted); max-width: 320px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; color: var(--muted-2); font-size: 13px;
}
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.pill-tag {
  display: inline-block; padding: 6px 14px; border: 1px solid var(--line-strong);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.pill-link { text-align: center; padding: 14px 16px; transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease); }
.pill-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,75,0.06); }
.pill-link::after { content: " \2193"; opacity: 0; transition: opacity .3s var(--ease); }
.pill-link:hover::after { opacity: 1; }
#enquiry, #upcoming { scroll-margin-top: 96px; }
.callout-band {
  padding: clamp(64px, 9vw, 120px) 0;
  text-align: center;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.callout-band .display-2 { max-width: 900px; margin: 0 auto; }

.page-hero {
  position: relative;
  padding: clamp(140px, 18vw, 220px) 0 clamp(48px, 6vw, 80px);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero .display-1 { font-size: clamp(40px, 7vw, 88px); }
.page-hero-media {
  position: absolute; inset: 0; z-index: 0; opacity: 0.28;
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-alt), rgba(19,19,19,0.4) 60%); }
.page-hero .container { position: relative; z-index: 1; }

.notice-box {
  border: 1px solid var(--line-strong);
  border-left: 2px solid var(--gold);
  padding: 24px 28px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
}
.notice-box strong { color: var(--white); }

/* Song smart links: "Listen on..." chooser and the "Back soon" state */
.song-soon {
  display: inline-block; padding: 10px 18px; border: 1px dashed var(--line-strong);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-2); white-space: nowrap; cursor: help;
}
.song-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.song-modal[hidden] { display: none; }
.song-modal-backdrop { position: absolute; inset: 0; background: rgba(10,10,10,0.82); backdrop-filter: blur(6px); }
.song-modal-card {
  position: relative; width: 100%; max-width: 380px; padding: 32px 28px 28px;
  background: var(--surface); border: 1px solid var(--line-strong); border-top: 2px solid var(--gold);
  text-align: center; animation: songIn .35s var(--ease);
}
@keyframes songIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.song-modal-close {
  position: absolute; top: 10px; right: 12px; background: none; border: none;
  color: var(--muted); font-size: 28px; line-height: 1; padding: 4px 8px;
}
.song-modal-close:hover { color: var(--white); }
.song-modal-art { width: 132px; height: 132px; object-fit: cover; margin: 0 auto 20px; border: 1px solid var(--line); }
.song-modal-title { font-weight: 800; font-size: 20px; margin: 10px 0 22px; }
.song-modal-title span { color: var(--muted); font-weight: 400; font-size: 15px; }
.song-modal-links { display: grid; gap: 8px; }
.song-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 18px; border: 1px solid var(--line-strong);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.song-link > span:last-child { color: var(--gold); flex: 0 0 auto; margin-left: 12px; }
.song-link-label { text-align: left; }
.song-link-label small { display: block; margin-top: 3px; font-size: 11px; font-weight: 500; letter-spacing: 0.04em; text-transform: none; color: var(--muted); }
.song-link:hover { border-color: var(--gold); background: rgba(201,162,75,0.08); color: var(--gold); }
.song-modal-card { max-height: calc(100vh - 40px); overflow-y: auto; }

/* EP page: release-era blocks rendered from data/content.js */
.ep-count {
  display: inline-block; margin-left: 12px; padding: 4px 12px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
}
.notice-box .platform-row { margin-top: 18px; }
.ep-buy { display: block; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.ep-buy:hover { border-color: var(--gold); transform: translateY(-2px); }
.ep-buy .name { font-weight: 800; font-size: 18px; }
.ep-buy .name::after { content: " \2197"; color: var(--gold); }
.ep-read { color: var(--gold); font-weight: 700; white-space: nowrap; }
.ep-read::after { content: " \2192"; }
.ep-read:hover { color: var(--gold-bright); }

.social-row { display: flex; gap: 16px; flex-wrap: wrap; }
.social-tile {
  flex: 1 1 200px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.social-tile:hover { border-color: var(--gold); transform: translateY(-3px); }
.social-tile .platform { font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; margin-bottom: 6px; }
.social-tile .handle { color: var(--muted); font-size: 14px; }

.press-photo { position: relative; }
.press-photo .frame { margin-bottom: 12px; }
.press-photo .cap { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted-2); }

.lang-only-fr, [lang="fr"] .lang-only-en { display: none; }
