@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Instrument+Sans:wght@400;500;600;700;800&display=swap");

/* =========================
   TOKENS + RESET
   ========================= */

:root {
  --black: #050505;
  --black-2: #0b0b09;
  --panel: #11110f;
  --panel-2: #181712;
  --white: #f5f2ea;
  --soft: rgba(245, 242, 234, 0.72);
  --muted: rgba(245, 242, 234, 0.48);
  --line: rgba(245, 242, 234, 0.12);
  --line-strong: rgba(245, 242, 234, 0.24);
  --gold: #dfb93d;
  --gold-2: #f1cd58;
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
  --head: "Archivo", "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
  --body: "Instrument Sans", "Inter", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(223, 185, 61, 0.08), transparent 28rem),
    radial-gradient(circle at 92% 72%, rgba(223, 185, 61, 0.06), transparent 24rem),
    var(--black);
  color: var(--white);
  font-family: var(--body);
  letter-spacing: -0.02em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    linear-gradient(90deg, rgba(245, 242, 234, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(245, 242, 234, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, #000, transparent 64%);
}

::selection {
  background: var(--gold);
  color: var(--black);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

/* =========================
   LANGUAGE DEFAULTS
   ========================= */

.en {
  display: none;
}

html[lang="en"] .pt {
  display: none;
}

html[lang="en"] .en {
  display: inline;
}

html[lang="en"] p.en,
html[lang="en"] div.en {
  display: block;
}

/* =========================
   GLOBAL TYPE + LAYOUT
   ========================= */

.section-pad {
  padding: clamp(64px, 9vw, 122px) clamp(20px, 5vw, 76px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

h1 {
  max-width: 980px;
  font-size: clamp(54px, 9.4vw, 148px);
}

h2 {
  font-size: clamp(36px, 6vw, 84px);
}

h3 {
  font-size: clamp(24px, 3vw, 42px);
}

p {
  color: var(--soft);
  line-height: 1.62;
}

/* =========================
   HEADER + NAV
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.76);
  border-bottom: 1px solid rgba(245, 242, 234, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(1px, 4vw, 160px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.site-nav a,
.lang-toggle {
  border: 0;
  background: transparent;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.lang-toggle:hover {
  color: var(--gold-2);
}

.lang-toggle {
  min-width: 44px;
  padding: 8px 11px;
  border: 1px solid rgba(245, 242, 234, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--white);
}

.site-nav .nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(223, 185, 61, 0.34);
  line-height: 1;
}

.site-nav .nav-pill-artists {
  color: var(--gold-2);
  background: rgba(223, 185, 61, 0.045);
}

.site-nav .nav-pill-artists:hover,
html[data-page="for-artists"] .site-nav .nav-pill-artists {
  border-color: rgba(223, 185, 61, 0.74);
  background: rgba(223, 185, 61, 0.12);
  color: var(--gold-2);
}

.site-nav .nav-pill-contact {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.site-nav .nav-pill-contact:hover {
  border-color: var(--gold-2);
  background: var(--gold-2);
  color: var(--black);
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(245, 242, 234, 0.26);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: 900;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary,
.btn-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.btn.ghost {
  background: rgba(245, 242, 234, 0.04);
  color: var(--white);
}

.btn.ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

/* =========================
   HOMEPAGE
   ========================= */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 75px);
  overflow: hidden;
}

.hero-bg {
  background-image: url("assets/wildchains-live.jpg");
  background-size: cover;
  background-position: top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.52) 0%, rgba(5, 5, 5, 0.7) 43%, rgba(5, 5, 5, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.24) 0%, rgba(5, 5, 5, 0.25) 100%);
}

.hero-inner {
  max-width: 1100px;
  padding-top: clamp(90px, 12vw, 150px);
}

.hero-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(245, 242, 234, 0.82);
  font-size: clamp(17px, 1.8vw, 23px);
}

.hero-actions,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.intro-copy p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(17px, 1.7vw, 21px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head.compact {
  max-width: 1050px;
}

/* =========================
   CHIPS
   ========================= */

.chips,
.mini-chips,
.profile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips > span,
.mini-chips > span,
.profile-chips > span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(223, 185, 61, 0.32);
  background: rgba(223, 185, 61, 0.045);
  color: rgba(241, 205, 88, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 800;
}

.mini-chips.big > span {
  min-height: 38px;
  padding: 10px 14px;
}

.chips > span:hover,
.mini-chips > span:hover,
.profile-chips > span:hover {
  border-color: rgba(223, 185, 61, 0.62);
  color: var(--gold-2);
}

/* =========================
   ROSTER CARDS
   ========================= */

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

.artist-card {
  display: grid;
  grid-template-rows: minmax(280px, 34vw) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.artist-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 185, 61, 0.55);
  box-shadow: var(--shadow);
}

.artist-img {
  position: relative;
  overflow: hidden;
  background: #090909;
}

.artist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.artist-card:hover .artist-img img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.08);
}

.artist-photo-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.artist-photo-meta span {
  display: inline-flex;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.artist-info {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border-top: 1px solid var(--line);
}

.artist-logo {
  width: min(430px, 100%);
  max-height: 78px;
  object-fit: contain;
  object-position: left;
}

.artist-info p {
  max-width: 650px;
  margin: 0;
  color: rgba(245, 242, 234, 0.84);
  font-size: 17px;
}

.card-link {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 900;
}

/* =========================
   CONTACT + FORMS
   ========================= */

.contact {
  padding-top: clamp(40px, 6vw, 72px);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.72);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.contact-copy p:last-child {
  max-width: 620px;
  font-size: 17px;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-pill,
.contact-card {
  border: 1px solid var(--line);
  transition: border-color 0.22s ease, transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-color: rgba(223, 185, 61, 0.42);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.contact-pill:hover {
  background: var(--gold);
  color: var(--black);
}

.contact-cards {
  display: grid;
  gap: 10px;
}

.contact-card {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 18px;
  background: rgba(5, 5, 5, 0.38);
  color: var(--white);
  text-align: left;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 185, 61, 0.52);
  background: rgba(223, 185, 61, 0.07);
}

.contact-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 10px;
  font-weight: 900;
}

.contact-card strong {
  letter-spacing: -0.04em;
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 800;
}

.copy-card {
  font: inherit;
}

.booking-form,
.artist-contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking-form label,
.artist-contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.artist-contact-form input,
.artist-contact-form select,
.artist-contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.052);
  color: #f5f0e6;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.booking-form textarea,
.artist-contact-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.artist-contact-form input:focus,
.artist-contact-form select:focus,
.artist-contact-form textarea:focus {
  border-color: rgba(223, 185, 61, 0.75);
  background: rgba(255, 255, 255, 0.07);
}

.booking-form select option,
.artist-contact-form select option {
  color: #111;
}

/* =========================
   FOOTER + REVEAL
   ========================= */

.site-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer img {
  width: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   GENERIC ARTIST PAGES
   ========================= */

.artist-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  padding-top: clamp(52px, 8vw, 100px);
}

.artist-page-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #090909;
  box-shadow: var(--shadow);
}

.artist-page-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 5, 5, 0.54));
  pointer-events: none;
}

.artist-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 900;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--gold);
}

.page-artist-logo {
  max-width: 420px;
  max-height: 44px;
  margin-bottom: 40px;
  object-fit: contain;
  object-position: left;
}

.artist-page-copy h1 {
  max-width: 850px;
  font-size: clamp(42px, 6.8vw, 104px);
}

.artist-page-copy p {
  max-width: 760px;
  color: rgba(245, 242, 234, 0.82);
  font-size: clamp(17px, 1.8vw, 22px);
}

.artist-section {
  padding-top: clamp(34px, 6vw, 80px);
}

.artist-section.slim {
  padding-top: 20px;
}

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

.format-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.format-grid article > span {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 900;
}

.format-grid h3 {
  font-size: clamp(25px, 3vw, 44px);
}

.format-grid p {
  margin: 18px 0 0;
  color: var(--soft);
}

.statement {
  padding: clamp(26px, 4vw, 44px) 0;
  border-top: 1px solid rgba(223, 185, 61, 0.35);
  border-bottom: 1px solid var(--line);
}

.statement p {
  margin: 0;
  color: var(--white);
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: -0.055em;
  line-height: 1;
  font-size: clamp(30px, 4.3vw, 70px);
  font-weight: 800;
}

/* =========================
   WILDCHAINS PROFILE
   ========================= */

.wildchains-profile-v2 {
  background: #030303;
  color: #f4efe4;
}

.wildchains-profile-v2 .artist-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(223, 185, 61, 0.2);
}

.wildchains-profile-v2 .artist-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wildchains-profile-v2 .artist-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.08) brightness(0.62);
  transform: scale(1.03);
}

.wildchains-profile-v2 .artist-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.68) 48%, rgba(3, 3, 3, 0.24) 100%),
    radial-gradient(circle at 78% 24%, rgba(223, 185, 61, 0.15), transparent 34%);
}

.wildchains-profile-v2 .artist-hero-inner,
.wildchains-profile-v2 .artist-stats,
.wildchains-profile-v2 .why-book,
.wildchains-profile-v2 .live-video-section,
.wildchains-profile-v2 .achievements-section,
.wildchains-profile-v2 .press-slider-section,
.wildchains-profile-v2 .artist-final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.wildchains-profile-v2 .artist-hero-inner {
  position: relative;
  z-index: 2;
  padding: 160px 0 86px;
}


.wildchains-profile-v2 .artist-hero-logo {
  width: min(350px, 120vw);
  height: auto;
}

.wildchains-profile-v2 .artist-kicker {
  margin: 0 0 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 900;
}

.wildchains-profile-v2 .artist-hero h1 {
  max-width: 500px;
  color: #fffaf0;
  font-size: clamp(1.4rem, 9vw, 2.6rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.wildchains-profile-v2 .artist-hero-lead {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(244, 239, 228, 0.82);
  font-size: clamp(1.03rem, 1.45vw, 1.24rem);
  line-height: 1.65;
}

.wildchains-profile-v2 .artist-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* Wildchains stats */
.wildchains-profile-v2 .artist-stats-section {
  padding-top: 38px;
  padding-bottom: 38px;
}

.wildchains-profile-v2 .artist-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(223, 185, 61, 0.2);
  border-bottom: 1px solid rgba(223, 185, 61, 0.2);
}

.wildchains-profile-v2 .artist-stats div {
  display: grid;
  align-content: center;
  min-height: 132px;
  padding: 28px 26px;
  gap: 8px;
  border-right: 1px solid rgba(223, 185, 61, 0.14);
  background:
    linear-gradient(135deg, rgba(223, 185, 61, 0.055), transparent),
    rgba(255, 255, 255, 0.018);
}

.wildchains-profile-v2 .artist-stats div:last-child {
  border-right: 0;
}

.wildchains-profile-v2 .artist-stats strong {
  color: #fffaf0;
  letter-spacing: -0.055em;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.86;
}

.wildchains-profile-v2 .artist-stats span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 850;
}

/* Why book */
.wildchains-profile-v2 .why-book .section-head,
.wildchains-profile-v2 .achievements-section .section-head {
  display: block;
  max-width: 980px;
}

.wildchains-profile-v2 .reason-grid-image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(223, 185, 61, 0.18);
  background: rgba(223, 185, 61, 0.18);
}

.wildchains-profile-v2 .reason-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 520px;
  overflow: hidden;
  background: #080807;
}

.wildchains-profile-v2 .reason-media {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.wildchains-profile-v2 .reason-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 8, 7, 0.82), transparent 68%),
    radial-gradient(circle at 70% 20%, rgba(223, 185, 61, 0.14), transparent 42%);
}

.wildchains-profile-v2 .reason-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(18%) contrast(1.06) brightness(0.76);
  transform: scale(1.04);
}

.wildchains-profile-v2 .reason-content {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
}

.wildchains-profile-v2 .reason-content > span {
  margin-bottom: 38px;
  color: rgba(223, 185, 61, 0.72);
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 900;
}

.wildchains-profile-v2 .reason-content h3 {
  margin: auto 0 18px;
  color: #fffaf0;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.wildchains-profile-v2 .reason-content p {
  margin: 0;
  color: rgba(244, 239, 228, 0.72);
  line-height: 1.65;
}

.wildchains-profile-v2 .stage-fit-inline {
  margin-top: 38px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(223, 185, 61, 0.14);
}

/* Live video */
.wildchains-profile-v2 .live-video-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 5vw, 66px);
  border: 1px solid rgba(223, 185, 61, 0.18);
  background:
    radial-gradient(circle at 0% 0%, rgba(223, 185, 61, 0.11), transparent 32%),
    rgba(255, 255, 255, 0.018);
}

.wildchains-profile-v2 .live-video-copy h2,
.wildchains-profile-v2 .artist-final-panel h2 {
  margin: 0 0 18px;
  color: #fffaf0;
  font-size: clamp(2.4rem, 5.2vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.wildchains-profile-v2 .live-video-copy p,
.wildchains-profile-v2 .artist-final-panel p {
  color: rgba(244, 239, 228, 0.74);
  line-height: 1.7;
}

.wildchains-profile-v2 .video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(223, 185, 61, 0.24);
  background: #000;
}

.wildchains-profile-v2 .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Achievements */
.wildchains-profile-v2 .achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(223, 185, 61, 0.18);
  background: rgba(223, 185, 61, 0.18);
}

.wildchains-profile-v2 .achievement-card {
  position: relative;
  display: block;
  min-height: 250px;
  overflow: hidden;
  background: #080807;
}

.wildchains-profile-v2 .achievement-card.wide,
.wildchains-profile-v2 .achievement-card.album {
  grid-column: span 2;
}

.wildchains-profile-v2 .achievement-bg,
.wildchains-profile-v2 .press-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wildchains-profile-v2 .achievement-bg img,
.wildchains-profile-v2 .press-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%) contrast(1.08) brightness(0.42) saturate(0.92);
}

.wildchains-profile-v2 .achievement-bg::after,
.wildchains-profile-v2 .press-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.52) 0%, rgba(5, 5, 5, 0.82) 48%, rgba(5, 5, 5, 0.94) 100%),
    radial-gradient(circle at 70% 20%, rgba(223, 185, 61, 0.14), transparent 36%);
}

.wildchains-profile-v2 .achievement-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: clamp(26px, 3.5vw, 44px);
}

.wildchains-profile-v2 .achievement-card.wide .achievement-content,
.wildchains-profile-v2 .achievement-card.album .achievement-content {
  min-height: 260px;
}

.wildchains-profile-v2 .achievement-number {
  color: rgba(223, 185, 61, 0.66);
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 900;
}

.wildchains-profile-v2 .achievement-card h3 {
  margin: 46px 0 16px;
  color: #fffaf0;
  font-size: clamp(1.8rem, 4vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.wildchains-profile-v2 .achievement-card p {
  max-width: 920px;
  margin: 0;
  color: rgba(244, 239, 228, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}

/* Press slider */
.wildchains-profile-v2 .press-slider-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.wildchains-profile-v2 .press-slider-head h2 {
  color: #fffaf0;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.wildchains-profile-v2 .press-controls {
  display: flex;
  gap: 8px;
}

.wildchains-profile-v2 .press-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(223, 185, 61, 0.36);
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-weight: 900;
  transition: 0.25s ease;
}

.wildchains-profile-v2 .press-controls button:hover {
  background: var(--gold);
  color: var(--black);
}

.wildchains-profile-v2 .press-slider {
  border: 1px solid rgba(223, 185, 61, 0.2);
  background:
    radial-gradient(circle at 85% 10%, rgba(223, 185, 61, 0.12), transparent 35%),
    #080807;
}

.wildchains-profile-v2 .press-slider-window {
  overflow: hidden;
}

.wildchains-profile-v2 .press-slider-track {
  display: flex;
  transition: transform 0.45s ease;
}

.wildchains-profile-v2 .press-slide {
  position: relative;
  display: block;
  min-width: 100%;
  min-height: 560px;
  overflow: hidden;
}

.wildchains-profile-v2 .press-slide-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  padding: clamp(34px, 6vw, 86px);
}

.wildchains-profile-v2 .press-slide p {
  max-width: 980px;
  margin: 0;
  color: #fffaf0;
  text-transform: uppercase;
  letter-spacing: -0.07em;
  font-size: clamp(2rem, 5.8vw, 6.4rem);
  line-height: 0.94;
}

.wildchains-profile-v2 .press-slide-content > span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 850;
}

.wildchains-profile-v2 .press-dots {
  display: flex;
  gap: 8px;
  padding: 0 clamp(34px, 6vw, 86px) clamp(28px, 4vw, 46px);
}

.wildchains-profile-v2 .press-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(244, 239, 228, 0.24);
}

.wildchains-profile-v2 .press-dots button.active {
  background: var(--gold);
}

/* Final CTA */
.wildchains-profile-v2 .artist-final-cta {
  padding-bottom: 100px;
}

.wildchains-profile-v2 .artist-final-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid rgba(223, 185, 61, 0.22);
  background:
    linear-gradient(135deg, rgba(223, 185, 61, 0.09), transparent 44%),
    #0a0a09;
}

.wildchains-profile-v2 .artist-final-panel h2 {
  font-size: clamp(2.4rem, 5.8vw, 6.4rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.wildchains-profile-v2 .artist-final-panel p {
  max-width: 720px;
}

.wildchains-profile-v2 .artist-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

/* =========================
   FOR ARTISTS PAGE — FINAL
   ========================= */

.for-artists-page {
  background: var(--black);
  color: var(--white);
}

.for-artists-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: calc(92vh - 75px);
  overflow: hidden;
  border-bottom: 1px solid rgba(223, 185, 61, 0.18);
}

.for-artists-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/press-1.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(10%) contrast(1.08) brightness(0.88);
  transform: scale(1.03);
}

.for-artists-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to top,
      rgba(5, 5, 5, 0.98) 0%,
      rgba(5, 5, 5, 0.7) 50%,
      rgba(5, 5, 5, 0.3) 100%
    ),
    radial-gradient(
      circle at 76% 20%,
      rgba(223, 185, 61, 0.16),
      transparent 34%
    );
}

.for-artists-hero-inner,
.artist-paths,
.artist-process,
.artist-form-section,
.artist-gateway {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.for-artists-hero-inner {
  padding: 130px 0 86px;
}

.for-artists-hero h1 {
  max-width: 1040px;
}

.for-artists-page .section-head.compact {
  max-width: 980px;
}

/* Two separated path cards */
.artist-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(223, 185, 61, 0.22);
  background: rgba(223, 185, 61, 0.22);
}

.artist-path-grid-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: 42px;
  border: 0;
  background: transparent;
}

.artist-path-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 82% 8%, rgba(223, 185, 61, 0.11), transparent 34%),
    #080807;
}

.artist-path-card-media {
  position: relative;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(223, 185, 61, 0.26);
  background: #080807;
}

.artist-path-card-media .artist-path-bg {
  position: absolute;
  inset: 0;
  background-image: var(--path-bg);
  background-size: cover;
  background-position: center;
  filter: grayscale(16%) contrast(1.08) brightness(0.48) saturate(0.95);
  transform: scale(1.04);
}

.artist-path-card-media .artist-path-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.76) 48%,
      rgba(5, 5, 5, 0.34) 100%
    ),
    radial-gradient(
      circle at 80% 18%,
      rgba(223, 185, 61, 0.15),
      transparent 38%
    );
}

.artist-path-card-media .artist-path-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
  padding: clamp(30px, 4vw, 56px);
}

.path-number,
.service-card > span,
.process-steps article > span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 900;
}

.artist-path-card-media .path-number {
  display: inline-block;
  margin-bottom: 38px;
  font-weight: 950;
}

.artist-path-card h3,
.service-card h3 {
  margin: 48px 0 18px;
}

.artist-path-card h3 {
  font-size: clamp(2rem, 4.4vw, 5rem);
}

.artist-path-card-media h3 {
  max-width: 100%;
  margin: 0 0 24px;
  color: #fffaf0;
  text-transform: uppercase;
  letter-spacing: -0.075em;
  font-size: clamp(2.65rem, 3.45vw, 4.15rem);
  line-height: 0.88;
}

.artist-path-card-media h3 span {
  display: inline;
}

.artist-path-card p,
.service-card p,
.process-steps p {
  margin: 0 0 24px;
  color: rgba(245, 242, 234, 0.76);
}

.artist-path-card-media p {
  max-width: 580px;
  margin: 0;
  color: rgba(245, 242, 234, 0.78);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.6;
}

.artist-path-card-media .mini-chips {
  margin-top: 34px;
}

/* Service chips: click/tap reveals fixed description box */
.service-chip-panel {
  margin-top: 34px;
}

.service-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 13px;
  border: 1px solid rgba(223, 185, 61, 0.46);
  background: rgba(223, 185, 61, 0.05);
  color: rgba(241, 205, 88, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 900;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.service-chip:hover,
.service-chip:focus-visible,
.service-chip.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #050505;
  transform: translateY(-2px);
}

.service-desc-box {
  display: none;
  min-height: 96px;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(223, 185, 61, 0.22);
  background:
    radial-gradient(circle at 96% 0%, rgba(223, 185, 61, 0.12), transparent 34%),
    rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(10px);
}

.service-desc-box.is-active {
  display: block;
}

.service-desc {
  display: none;
  max-width: 620px;
  margin: 0 !important;
  color: rgba(245, 242, 234, 0.76) !important;
  font-size: 0.92rem !important;
  line-height: 1.52 !important;
}

.service-desc.is-active {
  display: block;
}

/* Legacy service grid support, safe if old markup still exists somewhere */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(223, 185, 61, 0.18);
  background: rgba(223, 185, 61, 0.18);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: clamp(24px, 3vw, 38px);
  background: #080807;
}

.service-card h3 {
  font-size: clamp(1.6rem, 2.8vw, 3.2rem);
}

/* Process + form */
.process-panel,
.artist-gateway-panel,
.artist-form-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  padding: clamp(30px, 5vw, 68px);
  border: 1px solid rgba(223, 185, 61, 0.2);
  background:
    linear-gradient(135deg, rgba(223, 185, 61, 0.09), transparent 38%),
    #0a0a09;
}

.process-steps {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(223, 185, 61, 0.18);
  background: rgba(223, 185, 61, 0.18);
}

.process-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  min-height: auto;
  padding: 22px;
  background: rgba(0, 0, 0, 0.42);
}

.process-steps p,
.process-panel-compact .process-steps p {
  margin: 0;
  color: rgba(245, 242, 234, 0.76);
  font-size: clamp(0.96rem, 1.15vw, 1.06rem);
}

.artist-gateway-panel {
  align-items: center;
}

.artist-gateway-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.artist-gateway-copy p {
  max-width: 640px;
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {
  .intro,
  .contact-panel,
  .artist-page-hero,
  .wildchains-profile-v2 .reason-grid-image,
  .wildchains-profile-v2 .live-video-layout,
  .wildchains-profile-v2 .artist-final-panel,
  .artist-path-grid,
  .artist-path-grid-media,
  .process-panel,
  .artist-gateway-panel,
  .artist-form-panel {
    grid-template-columns: 1fr;
  }

  .artist-grid,
  .format-grid,
  .wildchains-profile-v2 .achievement-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wildchains-profile-v2 .artist-stats {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .artist-page-media {
    min-height: 420px;
  }

  .wildchains-profile-v2 .achievement-card.wide,
  .wildchains-profile-v2 .achievement-card.album {
    grid-column: span 1;
  }

  .wildchains-profile-v2 .artist-final-actions {
    justify-content: flex-start;
  }

  .artist-path-card-media,
  .artist-path-card-media .artist-path-content {
    min-height: 520px;
  }

  .artist-path-card-media h3 {
    font-size: clamp(3rem, 10vw, 5rem);
  }
}

@media (max-width: 860px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 46px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 69px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.97);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .site-nav .lang-toggle,
  .site-nav .nav-pill {
    justify-content: flex-start;
    min-height: 48px;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    text-align: left;
  }

  .site-nav .nav-pill-artists,
  .site-nav .nav-pill-contact {
    color: var(--gold-2);
  }

  .site-nav .nav-pill-artists {
    border-bottom-color: rgba(223, 185, 61, 0.32);
  }

  .site-nav .nav-pill-contact {
    border-bottom-color: rgba(223, 185, 61, 0.52);
  }

  .lang-toggle {
    justify-content: flex-start;
    min-width: 0;
  }

  h1 {
    font-size: clamp(46px, 14vw, 72px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 56px);
  }

  .section-pad {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-inner {
    padding-top: 120px;
  }

  .artist-card {
    grid-template-rows: 280px auto;
  }

  .artist-page-media {
    min-height: 340px;
  }

  .contact-panel {
    padding: 24px 18px;
  }

  .contact-card strong {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .wildchains-profile-v2 .artist-hero {
    min-height: 88vh;
  }

  .wildchains-profile-v2 .artist-hero-inner,
  .wildchains-profile-v2 .artist-stats,
  .wildchains-profile-v2 .why-book,
  .wildchains-profile-v2 .live-video-section,
  .wildchains-profile-v2 .achievements-section,
  .wildchains-profile-v2 .press-slider-section,
  .wildchains-profile-v2 .artist-final-cta,
  .for-artists-hero-inner,
  .artist-paths,
  .artist-process,
  .artist-form-section,
  .artist-gateway {
    width: min(100% - 28px, 1180px);
  }

  .wildchains-profile-v2 .artist-hero-inner,
  .for-artists-hero-inner {
    padding: 126px 0 54px;
  }

  .wildchains-profile-v2 .artist-hero-logo-wrap {
    padding: 14px 16px;
  }

  .wildchains-profile-v2 .artist-hero h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .wildchains-profile-v2 .artist-hero-lead {
    font-size: 0.98rem;
  }

  .wildchains-profile-v2 .artist-stats,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .wildchains-profile-v2 .artist-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(223, 185, 61, 0.14);
  }

  .wildchains-profile-v2 .artist-stats div:last-child {
    border-bottom: 0;
  }

  .wildchains-profile-v2 .reason-card {
    grid-template-rows: 340px auto;
    min-height: auto;
  }

  .wildchains-profile-v2 .live-video-layout,
  .wildchains-profile-v2 .artist-final-panel,
  .process-panel,
  .artist-gateway-panel,
  .artist-form-panel {
    padding: 28px 22px;
  }

  .wildchains-profile-v2 .press-slider-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .wildchains-profile-v2 .press-slide,
  .wildchains-profile-v2 .press-slide-content {
    min-height: 460px;
  }

  .wildchains-profile-v2 .press-slide p {
    font-size: clamp(2rem, 13vw, 4.2rem);
  }

  .profile-chips > span {
    font-size: 0.62rem;
  }

  .artist-path-card,
  .service-card {
    min-height: auto;
  }

  .artist-path-card-media,
  .artist-path-card-media .artist-path-content {
    min-height: 470px;
  }

  .artist-path-card-media .artist-path-content {
    padding: 28px 22px;
  }

  .artist-path-card-media .path-number {
    margin-bottom: 28px;
  }

  .artist-path-card-media h3 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .service-chip-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-chip {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .service-desc-box {
    min-height: 110px;
  }
}

/* =========================
   LAYOUT POLISH — HEADER + LANGUAGE BUTTON
   ========================= */

.brand img {
  width: clamp(44px, 4vw, 64px);
  height: auto;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(245, 242, 234, 0.28);
  letter-spacing: 0.14em;
}

.lang-toggle .flag {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}

/* =========================
   ARTIST PROFILE — BASE PATCHES
   ========================= */

.wildchains-profile-v2 .artist-hero-logo-wrap {
  width: fit-content;
  max-width: 380px;
  margin-bottom: 22px;
  padding: 20px 24px;
  border: 1px solid rgba(245, 242, 234, 0.18);
  background: rgba(8, 8, 7, 0.74);
  backdrop-filter: blur(16px);
}

.wildchains-profile-v2 .artist-hero-logo {
  width: min(340px, 72vw);
  height: auto;
}

.wildchains-profile-v2 .artist-hero h1 {
  max-width: 980px;
  color: #fffaf0;
  text-transform: uppercase;
  letter-spacing: -0.075em;
  font-size: clamp(3rem, 8.2vw, 8.2rem);
  line-height: 0.86;
}

.wildchains-profile-v2 .artist-stats {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(223, 185, 61, 0.2);
}

.wildchains-profile-v2 .artist-stats div {
  border-right: 0;
}

/* =========================
   WILDCHAINS THEME — WHITE / SILVER
   ========================= */

.wildchains-profile-v2:not(.devil-profile-v2) {
  --gold: #f4efe4;
  --gold-2: #ffffff;
}

.wildchains-profile-v2:not(.devil-profile-v2) .artist-hero {
  border-bottom-color: rgba(245, 242, 234, 0.16);
}

.wildchains-profile-v2:not(.devil-profile-v2) .artist-hero-logo-wrap {
  border-color: rgba(245, 242, 234, 0.22);
  background: rgba(4, 4, 4, 0.76);
}

.wildchains-profile-v2:not(.devil-profile-v2) .artist-hero-overlay {
  background:
    linear-gradient(to top, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.7) 48%, rgba(3, 3, 3, 0.24) 100%),
    radial-gradient(circle at 78% 24%, rgba(245, 242, 234, 0.12), transparent 34%);
}

.wildchains-profile-v2:not(.devil-profile-v2) .artist-stats,
.wildchains-profile-v2:not(.devil-profile-v2) .reason-grid-image,
.wildchains-profile-v2:not(.devil-profile-v2) .achievement-grid,
.wildchains-profile-v2:not(.devil-profile-v2) .press-slider,
.wildchains-profile-v2:not(.devil-profile-v2) .live-video-layout,
.wildchains-profile-v2:not(.devil-profile-v2) .artist-final-panel {
  border-color: rgba(245, 242, 234, 0.18);
}

.wildchains-profile-v2:not(.devil-profile-v2) .artist-stats,
.wildchains-profile-v2:not(.devil-profile-v2) .reason-grid-image,
.wildchains-profile-v2:not(.devil-profile-v2) .achievement-grid {
  background: rgba(245, 242, 234, 0.12);
}

.wildchains-profile-v2:not(.devil-profile-v2) .artist-stats div {
  border-right-color: rgba(245, 242, 234, 0.12);
  background:
    linear-gradient(135deg, rgba(245, 242, 234, 0.052), transparent),
    rgba(255, 255, 255, 0.018);
}

.wildchains-profile-v2:not(.devil-profile-v2) .stage-fit-inline {
  border-top-color: rgba(245, 242, 234, 0.14);
}

.wildchains-profile-v2:not(.devil-profile-v2) .reason-media::after {
  background:
    linear-gradient(to bottom, rgba(5, 5, 5, 0.42) 0%, rgba(5, 5, 5, 0.08) 42%, rgba(5, 5, 5, 0.82) 100%),
    radial-gradient(circle at 72% 18%, rgba(245, 242, 234, 0.13), transparent 36%);
}

.wildchains-profile-v2:not(.devil-profile-v2) .achievement-bg::after,
.wildchains-profile-v2:not(.devil-profile-v2) .press-slide-bg::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.54) 0%, rgba(5, 5, 5, 0.62) 46%, rgba(5, 5, 5, 0.86) 100%),
    radial-gradient(circle at 70% 20%, rgba(245, 242, 234, 0.12), transparent 36%);
}

.wildchains-profile-v2:not(.devil-profile-v2) .profile-chips > span {
  border-color: rgba(245, 242, 234, 0.34);
  color: rgba(245, 242, 234, 0.92);
  background: rgba(245, 242, 234, 0.055);
}

.wildchains-profile-v2:not(.devil-profile-v2) .btn.primary,
.wildchains-profile-v2:not(.devil-profile-v2) .press-controls button:hover,
.wildchains-profile-v2:not(.devil-profile-v2) .press-open:hover {
  border-color: #f4efe4;
  background: #f4efe4;
  color: #050505;
}

.wildchains-profile-v2:not(.devil-profile-v2) .btn.primary:hover {
  border-color: #ffffff;
  background: #ffffff;
}

.wildchains-profile-v2:not(.devil-profile-v2) .press-open {
  border-color: rgba(245, 242, 234, 0.34);
  background: rgba(245, 242, 234, 0.055);
  color: rgba(245, 242, 234, 0.92);
}

.wildchains-profile-v2:not(.devil-profile-v2) .artist-final-panel {
  background:
    linear-gradient(135deg, rgba(245, 242, 234, 0.075), transparent 44%),
    #0a0a09;
}

/* =========================
   WILDCHAINS / DEVIL — WHY BOOK CARDS
   ========================= */

.wildchains-profile-v2 .reason-grid-image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(223, 185, 61, 0.18);
  background: rgba(223, 185, 61, 0.18);
}

.wildchains-profile-v2 .reason-card {
  display: grid;
  grid-template-rows: minmax(340px, 42vw) auto;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  background: #080807;
}

.wildchains-profile-v2 .reason-media {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.wildchains-profile-v2 .reason-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(12%) contrast(1.08) brightness(0.68);
  transform: scale(1.02);
}

.wildchains-profile-v2 .reason-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(5, 5, 5, 0.42) 0%, rgba(5, 5, 5, 0.08) 42%, rgba(5, 5, 5, 0.82) 100%),
    radial-gradient(circle at 72% 18%, rgba(223, 185, 61, 0.16), transparent 36%);
}

.wildchains-profile-v2 .reason-number {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 950;
}

.wildchains-profile-v2 .reason-content {
  display: block;
  min-height: 260px;
  padding: clamp(26px, 3.2vw, 42px);
}

.wildchains-profile-v2 .reason-content > span {
  display: none;
}

.wildchains-profile-v2 .reason-content h3 {
  margin: 0 0 20px;
  color: #fffaf0;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  font-size: clamp(1.65rem, 2.7vw, 2.9rem);
  line-height: 0.9;
}

.wildchains-profile-v2 .reason-content p {
  max-width: 560px;
  margin: 0;
  color: rgba(244, 239, 228, 0.76);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.72;
}

@media (max-width: 980px) {
  .wildchains-profile-v2 .reason-grid-image {
    grid-template-columns: 1fr;
  }

  .wildchains-profile-v2 .reason-card {
    grid-template-rows: minmax(320px, 58vw) auto;
  }

  .wildchains-profile-v2 .reason-content {
    min-height: auto;
  }
}

/* =========================
   ACHIEVEMENT LISTS
   ========================= */

.achievement-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.achievement-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(244, 239, 228, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.55;
}

.achievement-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.achievement-list em {
  color: #fffaf0;
  font-style: normal;
}

/* =========================
   PRESS SLIDER — EDITORIAL + MODAL
   ========================= */

.wildchains-profile-v2 .press-slide-content {
  justify-content: space-between;
  gap: 34px;
}

.wildchains-profile-v2 .press-quote-block {
  max-width: 1080px;
}

.wildchains-profile-v2 .press-masthead {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: clamp(26px, 4vw, 46px);
}

.wildchains-profile-v2 .press-masthead span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
  font-size: clamp(1.4rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
}

.wildchains-profile-v2 .press-masthead small {
  color: rgba(244, 239, 228, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 900;
}

.wildchains-profile-v2 .press-slide p {
  max-width: 1060px;
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: -0.07em;
  font-size: clamp(2.2rem, 5.4vw, 6.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.wildchains-profile-v2 .press-article-title {
  display: block;
  max-width: 780px;
  margin-top: clamp(22px, 3vw, 34px);
  color: rgba(244, 239, 228, 0.68);
  letter-spacing: 0.02em;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
}

.wildchains-profile-v2 .press-source {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 900;
}

.wildchains-profile-v2 .press-open {
  width: fit-content;
  margin-top: 8px;
  padding: 13px 17px;
  border: 1px solid rgba(223, 185, 61, 0.42);
  background: rgba(223, 185, 61, 0.06);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 900;
  transition: 0.25s ease;
}

.wildchains-profile-v2 .press-open:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #050505;
}

.press-modal[hidden] {
  display: none;
}

.press-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.press-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.press-modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(223, 185, 61, 0.28);
  background:
    radial-gradient(circle at 90% 0%, rgba(223, 185, 61, 0.14), transparent 34%),
    #080807;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.66);
}

.press-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 242, 234, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

.press-modal-close:hover {
  border-color: rgba(223, 185, 61, 0.58);
  color: var(--gold);
}

.press-modal-panel h3 {
  margin: 0;
  color: #fffaf0;
  text-transform: uppercase;
  letter-spacing: -0.065em;
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 0.9;
}

.press-modal-date {
  margin: 18px 0 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 850;
}

.press-modal-highlight {
  margin: 28px 0 34px;
  color: rgba(244, 239, 228, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

body:has(.wildchains-profile-v2:not(.devil-profile-v2)) .press-modal-panel {
  border-color: rgba(245, 242, 234, 0.24);
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 242, 234, 0.12), transparent 34%),
    #080807;
}

body:has(.wildchains-profile-v2:not(.devil-profile-v2)) .press-modal-date,
body:has(.wildchains-profile-v2:not(.devil-profile-v2)) .press-modal-close:hover {
  color: #f4efe4;
}

body:has(.wildchains-profile-v2:not(.devil-profile-v2)) .press-modal-close:hover {
  border-color: rgba(245, 242, 234, 0.48);
}

@media (max-width: 640px) {
  .press-modal {
    padding: 12px;
  }

  .press-modal-panel {
    padding: 34px 22px 28px;
  }

  .press-modal-panel h3 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .wildchains-profile-v2 .press-masthead {
    margin-bottom: 24px;
  }

  .wildchains-profile-v2 .press-masthead span {
    font-size: clamp(1.6rem, 9vw, 2.8rem);
  }

  .wildchains-profile-v2 .press-slide p {
    font-size: clamp(2rem, 11vw, 4rem);
    line-height: 1;
  }

  .wildchains-profile-v2 .press-article-title {
    font-size: 0.86rem;
  }
}

/* =========================
   DEVIL OF A WOMAN THEME — RED
   ========================= */

.devil-profile-v2 {
  --gold: #d21f1b;
  --gold-2: #ff3b32;
}

.devil-profile-v2 .artist-hero-logo-wrap {
  border-color: rgba(210, 31, 27, 0.28);
  background: rgba(12, 4, 4, 0.84);
}

.devil-profile-v2 .artist-hero-bg img {
  filter: grayscale(10%) contrast(1.08) brightness(0.86) saturate(1.05);
}

.devil-profile-v2 .artist-hero-overlay {
  background:
    linear-gradient(to top, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.72) 48%, rgba(3, 3, 3, 0.28) 100%),
    radial-gradient(circle at 78% 24%, rgba(210, 31, 27, 0.2), transparent 34%);
}

.devil-profile-v2 .artist-hero-logo {
  width: min(260px, 68vw);
}

.devil-profile-v2 .artist-hero,
.devil-profile-v2 .artist-stats,
.devil-profile-v2 .reason-grid-image,
.devil-profile-v2 .achievement-grid,
.devil-profile-v2 .press-slider,
.devil-profile-v2 .live-video-layout,
.devil-profile-v2 .artist-final-panel {
  border-color: rgba(210, 31, 27, 0.22);
}

.devil-profile-v2 .artist-stats,
.devil-profile-v2 .reason-grid-image,
.devil-profile-v2 .achievement-grid {
  background: rgba(210, 31, 27, 0.16);
}

.devil-profile-v2 .artist-stats div {
  border-right-color: rgba(210, 31, 27, 0.16);
  background:
    linear-gradient(135deg, rgba(210, 31, 27, 0.07), transparent),
    rgba(255, 255, 255, 0.018);
}

.devil-profile-v2 .reason-media img,
.devil-profile-v2 .achievement-bg img,
.devil-profile-v2 .press-slide-bg img {
  filter: grayscale(4%) contrast(1.08) brightness(0.76) saturate(1.12);
}

.devil-profile-v2 .reason-media::after,
.devil-profile-v2 .achievement-bg::after,
.devil-profile-v2 .press-slide-bg::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.62) 38%, rgba(5, 5, 5, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.22) 0%, rgba(5, 5, 5, 0.62) 100%),
    radial-gradient(circle at 72% 18%, rgba(210, 31, 27, 0.18), transparent 38%);
}

.devil-profile-v2 .profile-chips > span {
  border-color: rgba(210, 31, 27, 0.42);
  color: rgba(255, 91, 84, 0.95);
  background: rgba(210, 31, 27, 0.06);
}

.devil-profile-v2 .press-masthead span,
.devil-profile-v2 .press-open,
.devil-profile-v2 .reason-number,
.devil-profile-v2 .achievement-number {
  color: var(--gold-2);
}

.devil-profile-v2 .press-open {
  border-color: rgba(210, 31, 27, 0.48);
  background: rgba(210, 31, 27, 0.08);
}

.devil-profile-v2 .press-open:hover,
.devil-profile-v2 .btn.primary,
.devil-profile-v2 .press-controls button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #050505;
}

.devil-profile-v2 .btn.primary:hover {
  border-color: var(--gold-2);
  background: var(--gold-2);
}

.devil-profile-v2 .artist-final-panel {
  background:
    linear-gradient(135deg, rgba(210, 31, 27, 0.1), transparent 44%),
    #0a0a09;
}

/* Devil why-book image crop */
.devil-profile-v2 .reason-media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: #050505;
}

.devil-profile-v2 .reason-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.1);
}

body:has(.devil-profile-v2) .press-modal-panel {
  border-color: rgba(210, 31, 27, 0.3);
  background:
    radial-gradient(circle at 90% 0%, rgba(210, 31, 27, 0.14), transparent 34%),
    #080807;
}

body:has(.devil-profile-v2) .press-modal-date,
body:has(.devil-profile-v2) .press-modal-close:hover {
  color: #ff3b32;
}

body:has(.devil-profile-v2) .press-modal-close:hover {
  border-color: rgba(210, 31, 27, 0.58);
}

@media (max-width: 640px) {
  .wildchains-profile-v2 .artist-hero-logo {
    width: min(280px, 72vw);
  }

  .devil-profile-v2 .artist-hero-logo {
    width: min(240px, 66vw);
  }
}

/* =========================
   FINAL LANGUAGE RULES
   Keep this block at the very end.
   ========================= */

html[lang="pt"] .en,
html[lang="en"] .pt {
  display: none !important;
}

html[lang="pt"] .pt,
html[lang="en"] .en {
  display: inline !important;
}

html[lang="pt"] p.pt,
html[lang="pt"] div.pt,
html[lang="en"] p.en,
html[lang="en"] div.en {
  display: block !important;
}

html[lang="pt"] .chips > span.pt,
html[lang="pt"] .mini-chips > span.pt,
html[lang="pt"] .profile-chips > span.pt,
html[lang="en"] .chips > span.en,
html[lang="en"] .mini-chips > span.en,
html[lang="en"] .profile-chips > span.en {
  display: inline-flex !important;
}


/* =========================================================
   FINAL SITE FIXES — CARAVELA AMARELA
   Paste-safe overrides for Devil imagery, achievements grid,
   For Artists service click states and mobile stability.
   Keep this block near the end, before the final language rules
   if you manually merge. If appended after language rules, it is
   still safe because it does not override PT/EN visibility.
   ========================================================= */

/* ---------- DEVIL: brighter images without losing readability ---------- */

.devil-profile-v2 .reason-media img {
  filter: grayscale(2%) contrast(1.08) brightness(0.92) saturate(1.14) !important;
  opacity: 1;
}

.devil-profile-v2 .reason-media::after {
  background:
    linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.08) 0%,
      rgba(5, 5, 5, 0.02) 42%,
      rgba(5, 5, 5, 0.42) 100%
    ),
    radial-gradient(
      circle at 70% 18%,
      rgba(210, 31, 27, 0.14),
      transparent 42%
    ) !important;
}

.devil-profile-v2 .achievement-bg img {
  filter: grayscale(2%) contrast(1.08) brightness(0.84) saturate(1.14) !important;
  opacity: 1;
}

.devil-profile-v2 .press-slide-bg img {
  filter: grayscale(2%) contrast(1.08) brightness(0.78) saturate(1.12) !important;
  opacity: 1;
}

.devil-profile-v2 .achievement-bg::after {
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.88) 0%,
      rgba(5, 5, 5, 0.66) 42%,
      rgba(5, 5, 5, 0.32) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.18) 0%,
      rgba(5, 5, 5, 0.58) 100%
    ),
    radial-gradient(
      circle at 72% 18%,
      rgba(210, 31, 27, 0.18),
      transparent 38%
    ) !important;
}

.devil-profile-v2 .press-slide-bg::after {
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.88) 0%,
      rgba(5, 5, 5, 0.68) 48%,
      rgba(5, 5, 5, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.12) 0%,
      rgba(5, 5, 5, 0.72) 100%
    ),
    radial-gradient(
      circle at 76% 20%,
      rgba(210, 31, 27, 0.16),
      transparent 38%
    ) !important;
}

/* ---------- DEVIL: remove empty red block in achievements ---------- */

.devil-profile-v2 .achievement-grid {
  grid-template-columns: 1fr !important;
  gap: 1px;
  background: rgba(210, 31, 27, 0.18) !important;
  border-color: rgba(210, 31, 27, 0.24) !important;
}

.devil-profile-v2 .achievement-card,
.devil-profile-v2 .achievement-card.wide,
.devil-profile-v2 .achievement-card.album {
  grid-column: 1 / -1 !important;
}

.devil-profile-v2 .achievement-card {
  min-height: 300px;
}

.devil-profile-v2 .achievement-card.wide .achievement-content,
.devil-profile-v2 .achievement-card.album .achievement-content,
.devil-profile-v2 .achievement-content {
  min-height: 300px;
}

.devil-profile-v2 .achievement-card h3 {
  max-width: 780px;
}

.devil-profile-v2 .achievement-list li::before {
  background: var(--gold-2);
}

/* ---------- FOR ARTISTS: final separated card layout ---------- */

.for-artists-page .artist-path-grid-media {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 28px) !important;
  border: 0 !important;
  background: transparent !important;
}

.for-artists-page .artist-path-card-media {
  min-height: 620px;
  border: 1px solid rgba(223, 185, 61, 0.28);
}

.for-artists-page .artist-path-card-media .artist-path-bg {
  filter: grayscale(14%) contrast(1.08) brightness(0.54) saturate(0.98);
}

.for-artists-page .artist-path-card-media .artist-path-bg::after {
  background:
    linear-gradient(
      to top,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.72) 48%,
      rgba(5, 5, 5, 0.26) 100%
    ),
    radial-gradient(
      circle at 80% 18%,
      rgba(223, 185, 61, 0.16),
      transparent 38%
    );
}

.for-artists-page .artist-path-card-media h3 {
  font-size: clamp(2.55rem, 3.35vw, 4.05rem);
  line-height: 0.88;
}

.for-artists-page .artist-path-card-media p {
  max-width: 600px;
}

/* ---------- FOR ARTISTS: click/tap service descriptions only ---------- */

.service-desc-box {
  display: none !important;
}

.service-desc-box.is-active {
  display: block !important;
}

.service-desc {
  display: none !important;
}

.service-desc.is-active {
  display: block !important;
}

.service-chip.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #050505;
  transform: translateY(-2px);
}

/* Remove old hover/:has behaviour if any browser still matches older blocks */
.artist-path-services:not(:has(.service-chip:hover, .service-chip:focus-visible)) .service-desc-default,
.artist-path-services:has(.service-chip-epk:hover) .service-desc-epk,
.artist-path-services:has(.service-chip-epk:focus-visible) .service-desc-epk,
.artist-path-services:has(.service-chip-photo:hover) .service-desc-photo,
.artist-path-services:has(.service-chip-photo:focus-visible) .service-desc-photo,
.artist-path-services:has(.service-chip-design:hover) .service-desc-design,
.artist-path-services:has(.service-chip-design:focus-visible) .service-desc-design,
.artist-path-services:has(.service-chip-release:hover) .service-desc-release,
.artist-path-services:has(.service-chip-release:focus-visible) .service-desc-release {
  display: none !important;
}

/* ---------- Mobile final stability ---------- */

@media (max-width: 980px) {
  .for-artists-page .artist-path-grid-media {
    grid-template-columns: 1fr !important;
  }

  .for-artists-page .artist-path-card-media,
  .for-artists-page .artist-path-card-media .artist-path-content {
    min-height: 540px;
  }

  .devil-profile-v2 .achievement-card,
  .devil-profile-v2 .achievement-content {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .devil-profile-v2 .reason-media img {
    object-position: center top;
    transform: scale(1.08);
  }

  .devil-profile-v2 .achievement-bg img,
  .devil-profile-v2 .press-slide-bg img {
    object-position: center;
  }

  .devil-profile-v2 .achievement-card,
  .devil-profile-v2 .achievement-content {
    min-height: auto;
  }

  .for-artists-page .artist-path-card-media,
  .for-artists-page .artist-path-card-media .artist-path-content {
    min-height: auto;
  }

  .for-artists-page .artist-path-card-media h3 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }
}

/* =========================================================
   FINAL IMAGE BALANCE — CARAVELA
   Less dark overall, but why-book Devil no longer over-bright.
   Paste this at the very end of styles.css.
   ========================================================= */

/* =========================
   DEVIL — WHY BOOK / PORQUE CONTRATAR
   ========================= */

/* Antes ficou brilhante demais. Isto baixa a luz mas mantém detalhe. */
.devil-profile-v2 .reason-media img {
  filter: grayscale(6%) contrast(1.08) brightness(0.64) saturate(1.06) !important;
  opacity: 1 !important;
  transform: scale(1.08) !important;
}

.devil-profile-v2 .reason-media::after {
  background:
    linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.34) 0%,
      rgba(5, 5, 5, 0.16) 42%,
      rgba(5, 5, 5, 0.74) 100%
    ),
    radial-gradient(
      circle at 72% 18%,
      rgba(210, 31, 27, 0.12),
      transparent 42%
    ) !important;
}

/* =========================
   DEVIL — HERO
   ========================= */

.devil-profile-v2 .artist-hero-bg img {
  filter: grayscale(8%) contrast(1.08) brightness(0.98) saturate(1.08) !important;
}

.devil-profile-v2 .artist-hero-overlay {
  background:
    linear-gradient(
      to top,
      rgba(3, 3, 3, 0.98) 0%,
      rgba(3, 3, 3, 0.58) 48%,
      rgba(3, 3, 3, 0.18) 100%
    ),
    radial-gradient(
      circle at 78% 24%,
      rgba(210, 31, 27, 0.16),
      transparent 36%
    ) !important;
}

/* =========================
   DEVIL — ACHIEVEMENTS / PALCOS / VALIDAÇÃO / ALBUM
   ========================= */

.devil-profile-v2 .achievement-bg img {
  filter: grayscale(3%) contrast(1.08) brightness(1.02) saturate(1.14) !important;
  opacity: 1 !important;
}

.devil-profile-v2 .achievement-bg::after {
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.78) 0%,
      rgba(5, 5, 5, 0.48) 44%,
      rgba(5, 5, 5, 0.16) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.08) 0%,
      rgba(5, 5, 5, 0.48) 100%
    ),
    radial-gradient(
      circle at 72% 18%,
      rgba(210, 31, 27, 0.14),
      transparent 40%
    ) !important;
}

/* Card do álbum precisa de imagem visível, mas texto continua legível */
.devil-profile-v2 .achievement-card.album .achievement-bg img {
  filter: grayscale(2%) contrast(1.08) brightness(1.08) saturate(1.16) !important;
}

.devil-profile-v2 .achievement-card.album .achievement-bg::after {
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.78) 0%,
      rgba(5, 5, 5, 0.46) 46%,
      rgba(5, 5, 5, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.08) 0%,
      rgba(5, 5, 5, 0.52) 100%
    ) !important;
}

/* =========================
   DEVIL — MEDIA SLIDER
   ========================= */

.devil-profile-v2 .press-slide-bg img {
  filter: grayscale(3%) contrast(1.08) brightness(0.98) saturate(1.12) !important;
  opacity: 1 !important;
}

.devil-profile-v2 .press-slide-bg::after {
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.72) 0%,
      rgba(5, 5, 5, 0.48) 48%,
      rgba(5, 5, 5, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.08) 0%,
      rgba(5, 5, 5, 0.56) 100%
    ),
    radial-gradient(
      circle at 76% 20%,
      rgba(210, 31, 27, 0.13),
      transparent 40%
    ) !important;
}

/* =========================
   FOR ARTISTS — HERO
   ========================= */

.for-artists-hero-bg {
  filter: grayscale(12%) contrast(1.06) brightness(0.78) saturate(1.02) !important;
}

.for-artists-hero::after {
  background:
    linear-gradient(
      to top,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.54) 50%,
      rgba(5, 5, 5, 0.16) 100%
    ),
    radial-gradient(
      circle at 76% 20%,
      rgba(223, 185, 61, 0.14),
      transparent 34%
    ) !important;
}

/* =========================
   FOR ARTISTS — TWO CARDS
   ========================= */

.for-artists-page .artist-path-card-media .artist-path-bg {
  filter: grayscale(12%) contrast(1.06) brightness(0.72) saturate(1.02) !important;
}

.for-artists-page .artist-path-card-media .artist-path-bg::after {
  background:
    linear-gradient(
      to top,
      rgba(5, 5, 5, 0.94) 0%,
      rgba(5, 5, 5, 0.58) 48%,
      rgba(5, 5, 5, 0.18) 100%
    ),
    radial-gradient(
      circle at 80% 18%,
      rgba(223, 185, 61, 0.14),
      transparent 38%
    ) !important;
}

/* Card de representação estava especialmente fechado */
.for-artists-page #representation .artist-path-bg {
  filter: grayscale(10%) contrast(1.06) brightness(0.78) saturate(1.03) !important;
}

/* =========================
   HOMEPAGE HERO — LIGHTER BUT STILL PREMIUM
   ========================= */

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.42) 0%,
      rgba(5, 5, 5, 0.58) 43%,
      rgba(5, 5, 5, 0.26) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.14) 0%,
      rgba(5, 5, 5, 0.28) 100%
    ) !important;
}