/* ==========================================================================
   Ali Zand Vakili — Official Site
   Design language: Persian classical meets cinematic modern.
   Ink black, antique gold, warm cream. Bilingual EN / FA (RTL aware).
   ========================================================================== */

:root {
  /* Core palette */
  --ink:        #08080A;
  --ink-2:      #0F0F13;
  --surface:    #16161C;
  --surface-2:  #1E1E26;
  --line:       rgba(233, 208, 145, 0.14);
  --line-soft:  rgba(255, 255, 255, 0.07);

  /* Gold — the single accent. Used sparingly so it stays precious. */
  --gold:       #C9A227;
  --gold-lit:   #E9D091;
  --gold-deep:  #8A6D14;

  /* Type colours */
  --cream:      #F5F1E8;
  --text:       #E7E3DA;
  --muted:      #9A968D;
  --faint:      #67645E;

  /* Metrics */
  --nav-h:      68px;
  --player-h:   78px;
  --maxw:       1200px;
  --radius:     14px;
  --radius-sm:  8px;

  /* Motion */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --fast:       220ms var(--ease);
  --slow:       620ms var(--ease);

  /* Fonts */
  --f-display:  'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --f-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-fa:       'Vazirmatn', 'Tahoma', sans-serif;
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: var(--player-h);
}

body.lang-fa { font-family: var(--f-fa); }
body.lang-fa .display,
body.lang-fa h1, body.lang-fa h2, body.lang-fa h3 { font-family: var(--f-fa); }

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

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

:focus-visible {
  outline: 2px solid var(--gold-lit);
  outline-offset: 3px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 { font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }

.display {
  font-family: var(--f-display);
  font-weight: 300;
  letter-spacing: 0.005em;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
body.lang-fa .eyebrow { letter-spacing: 0.06em; }

.lede { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.section { padding: clamp(2.75rem, 5.5vw, 4.5rem) 0; position: relative; }
.section--tint { background: linear-gradient(180deg, transparent, var(--ink-2) 18%, var(--ink-2) 82%, transparent); }

.section-head { margin-bottom: clamp(1.4rem, 3vw, 2.25rem); }
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  font-weight: 300;
  color: var(--cream);
  margin-top: 0.5rem;
}
.section-head p { margin-top: 0.9rem; }

/* --- Section-title choreography ---------------------------------------
   The head container is the reveal trigger; each child animates in its own
   beat: eyebrow → headline (masked rise) → lede → the rule draws itself. */
.section-head[data-reveal] { opacity: 1; transform: none; }

.section-head .eyebrow {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.section-head h2 {
  opacity: 0;
  transform: translateY(38px);
  clip-path: inset(0 0 100% 0);
  transition: opacity 650ms var(--ease) 120ms, transform 650ms var(--ease) 120ms, clip-path 650ms var(--ease) 120ms;
}
.section-head p {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease) 300ms, transform 600ms var(--ease) 300ms;
}
.section-head .rule::before,
.section-head .rule::after {
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 900ms var(--ease) 350ms;
}
[dir="rtl"] .section-head .rule::before,
[dir="rtl"] .section-head .rule::after { transform-origin: 100% 50%; }
.section-head .rule i {
  transform: rotate(45deg) scale(0);
  transition: transform 500ms var(--ease) 650ms;
}
.section-head.is-in .eyebrow { opacity: 1; transform: none; }
.section-head.is-in h2 { opacity: 1; transform: none; clip-path: inset(-0.2em 0 -0.2em 0); }
.section-head.is-in p { opacity: 1; transform: none; }
.section-head.is-in .rule::before,
.section-head.is-in .rule::after { transform: scaleX(1); }
.section-head.is-in .rule i { transform: rotate(45deg) scale(1); }

/* A hairline with a gold diamond — recurring motif */
.rule {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.4rem 0 0;
  color: var(--line);
}
.rule::before, .rule::after { content: ''; height: 1px; background: currentColor; flex: 1; }
.rule::after { flex: 3; }
.rule i {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--fast), color var(--fast), border-color var(--fast), transform var(--fast);
  border: 1px solid transparent;
  white-space: nowrap;
}
body.lang-fa .btn { letter-spacing: 0; text-transform: none; font-size: 0.92rem; }

.btn--gold { background: var(--gold); color: #17130A; }
.btn--gold:hover { background: var(--gold-lit); transform: translateY(-2px); }

.btn--ghost { border-color: var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-lit); transform: translateY(-2px); }

.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.76rem; }

.btn svg { width: 16px; height: 16px; flex: none; }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  transition: background var(--fast), backdrop-filter var(--fast), border-color var(--fast);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(8, 8, 10, 0.86);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-soft);
}

.nav__inner { display: flex; align-items: center; gap: 1.5rem; width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.nav__brand {
  font-family: var(--f-display);
  font-size: 1.22rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-transform: uppercase;
  white-space: nowrap;
  margin-inline-end: auto;
}
.nav__brand span { color: var(--gold); }
body.lang-fa .nav__brand { text-transform: none; letter-spacing: 0; }

.nav__links { display: flex; gap: 1.75rem; align-items: center; }
.nav__links a {
  font-size: 0.79rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--fast);
}
body.lang-fa .nav__links a { letter-spacing: 0; text-transform: none; font-size: 0.92rem; }
.nav__links a::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width var(--fast);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--cream); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }

.nav__tools { display: flex; align-items: center; gap: 0.65rem; }

.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
}
.lang-toggle button {
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: background var(--fast), color var(--fast);
}
.lang-toggle button[aria-pressed="true"] { background: var(--gold); color: #17130A; }

.nav__burger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 20px; height: 1.5px; background: var(--cream); position: relative; transition: background var(--fast); }
.nav__burger span::before, .nav__burger span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--cream);
  transition: transform var(--fast), top var(--fast);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top:  6px; }
.nav.is-open .nav__burger span { background: transparent; }
.nav.is-open .nav__burger span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__burger span::after  { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  overflow: hidden;
}

/* Slow gold shimmer sweeping the hero — barely there */
.hero::before {
  content: '';
  position: absolute; inset: -20%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(201,162,39,0.10), transparent 70%);
  animation: drift 22s var(--ease) infinite alternate;
  pointer-events: none;
}
@keyframes drift {
  from { transform: translate3d(-12%, -6%, 0) scale(1); }
  to   { transform: translate3d(14%, 8%, 0) scale(1.25); }
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero__inner { max-width: 640px; }

/* ---- 3D portrait composition ---------------------------------------- */
.hero__visual {
  position: relative;
  height: clamp(420px, 62vh, 640px);
  perspective: 1100px;
  animation: hv-in 1.1s var(--ease) both 0.15s;
}
@keyframes hv-in {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: none; }
}

.hero__visual > * { will-change: transform; }

.hv__card {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: min(78%, 400px);
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(233, 208, 145, 0.55);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.65),
    0 10px 30px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  z-index: 3;
  background: var(--surface);
}
/* The photo exactly fills the frame; all pan/zoom motion happens inside a
   base scale-up (see JS), so a gap between photo and frame is impossible. */
.hv__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bias the crop leftward — the source photo has a dark band on its right
     edge that otherwise reads as a mis-fit frame. */
  object-position: 18% 50%;
  filter: contrast(1.06) saturate(0.92);
  transform: scale(1.16);
  will-change: transform;
}

/* Ghosted echo of the photo floating behind the card — pure depth */
.hv__echo {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: min(86%, 442px);
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  z-index: 2;
  opacity: 0.2;
  filter: blur(16px) saturate(0.6) brightness(0.85);
  pointer-events: none;
}
.hv__echo img { width: 100%; height: 100%; object-fit: cover; }
/* warm vignette so the photo sits in the palette */
.hv__card::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,0) 55%, rgba(8,8,10,0.55) 100%),
    radial-gradient(120% 90% at 30% 20%, rgba(201,162,39,0.12), transparent 55%);
  pointer-events: none;
}
.hv__grain {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hv__sheen {
  position: absolute; inset: -60% -30%;
  background: linear-gradient(115deg, transparent 42%, rgba(245,241,232,0.10) 50%, transparent 58%);
  transform: translateX(-70%);
  animation: sheen 7s var(--ease) infinite 2s;
  pointer-events: none;
}
@keyframes sheen {
  0%, 55%, 100% { transform: translateX(-70%); }
  70% { transform: translateX(55%); }
}

.hv__halo {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 130%;
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(201,162,39,0.16), transparent 68%);
  z-index: 1;
}

.hv__ring {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 104%;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 50%;
  z-index: 2;
}
.hv__ring::before {
  content: '';
  position: absolute;
  top: 7%;
  left: 82%;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(201,162,39,0.8);
}
.hv__ring--2 {
  width: 122%;
  border-color: rgba(201, 162, 39, 0.13);
  border-style: dashed;
}
.hv__ring--2::before { top: 78%; left: 4%; width: 6px; height: 6px; }

.hv__fa {
  position: absolute;
  top: 4%;
  inset-inline-end: 2%;
  font-size: clamp(5rem, 9vw, 8.5rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 39, 0.35);
  z-index: 1;
  font-family: var(--f-fa);
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}
.hv__fa--last {
  top: auto;
  bottom: 10%;
  inset-inline-end: auto;
  inset-inline-start: -24%;
  font-size: clamp(3.6rem, 6.5vw, 6rem);
  -webkit-text-stroke-color: rgba(201, 162, 39, 0.32);
}

/* Orbiting album-cover satellites (created by JS) */
.hv__sat {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(233, 208, 145, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
  will-change: transform, opacity;
  pointer-events: none;
  background: var(--surface);
}
.hv__sat img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hv__diamond {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.85;
  z-index: 4;
  box-shadow: 0 0 18px rgba(201,162,39,0.55);
}
.hv__diamond--1 { top: 12%; inset-inline-start: 8%; }
.hv__diamond--2 { bottom: 10%; inset-inline-end: 12%; width: 8px; height: 8px; opacity: 0.6; }
.hv__diamond--3 { top: 46%; inset-inline-start: -2%; width: 6px; height: 6px; opacity: 0.5; }

.hero__name {
  font-family: 'Playfair Display', var(--f-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 1;
  color: var(--cream);
  letter-spacing: 0.005em;
  margin: 1.2rem 0 0;
}
body.lang-fa .hero__name { font-family: var(--f-fa); font-weight: 300; }

/* Minimal, couture-style reveal: the whole line breathes in — a soft fade-up
   while the tracking settles from airy-wide to set. Nothing else moves. */
.hero__name .hn-line {
  display: block;
  position: relative;
  white-space: nowrap;
  padding-bottom: 0.1em;
}

.hero__name .hn-first {
  font-weight: 500;
  font-size: 0.82em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(10px);
  letter-spacing: 0.3em;
  animation: name-in 1.3s var(--ease) 0.25s forwards;
}
body.lang-fa .hero__name .hn-first { text-transform: none; font-size: 0.82em; animation-name: name-in-fa; letter-spacing: 0; }

.hero__name .hn-last {
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  letter-spacing: 0.24em;
  color: transparent;
  background: linear-gradient(100deg,
    var(--gold-deep) 0%, var(--gold) 30%, #F4E3AE 50%, var(--gold) 70%, var(--gold-deep) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}
body.lang-fa .hero__name .hn-last { text-transform: none; letter-spacing: 0; }
.hero__name.is-revealed .hn-last {
  animation: name-in 1.3s var(--ease) forwards, gold-flow 14s linear infinite 2s;
}
body.lang-fa .hero__name.is-revealed .hn-last {
  animation: name-in-fa 1.2s var(--ease) forwards, gold-flow 14s linear infinite 2s;
}

@keyframes name-in {
  from { opacity: 0; transform: translateY(12px); letter-spacing: 0.3em; }
  to   { opacity: 1; transform: none; letter-spacing: 0.035em; }
}
/* Persian joined script must never be letter-spaced */
@keyframes name-in-fa {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* A gold underline draws itself beneath the surname once it has landed */
.hero__name .hn-last::after {
  content: '';
  position: absolute;
  inset-inline-start: 0.04em;
  bottom: 0.02em;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-lit) 45%, transparent 95%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 1.1s var(--ease) 0.7s;
}
[dir="rtl"] .hero__name .hn-last::after { transform-origin: 100% 50%; background: linear-gradient(-90deg, var(--gold-deep), var(--gold-lit) 45%, transparent 95%); }
.hero__name.is-revealed .hn-last::after { transform: scaleX(1); }

@keyframes gold-flow {
  from { background-position: 0% 0; }
  to   { background-position: -220% 0; }
}

.hero__fa {
  font-family: var(--f-fa);
  direction: rtl;
  font-size: clamp(1.3rem, 3.6vw, 2rem);
  color: var(--muted);
  margin-top: 0.85rem;
  font-weight: 300;
}

.hero__tag { margin-top: 1.6rem; font-size: clamp(1rem, 2.2vw, 1.2rem); color: var(--muted); max-width: 54ch; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.4rem; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.hero__stats div strong {
  display: block;
  font-family: var(--f-body);
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums lining-nums;
  color: var(--gold-lit);
  line-height: 1;
}
.hero__stats div span { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
body.lang-fa .hero__stats div span { letter-spacing: 0; text-transform: none; font-size: 0.85rem; }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: pulse-line 2.6s ease-in-out infinite;
}
@keyframes pulse-line { 0%,100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* --------------------------------------------------------------------------
   Marquee (touring / status strip)
   -------------------------------------------------------------------------- */
.marquee {
  border-block: 1px solid var(--line-soft);
  background: var(--ink-2);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--faint);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.marquee__track span::after { content: '◆'; color: var(--gold-deep); font-size: 0.6rem; }
@keyframes slide { to { transform: translateX(-50%); } }
[dir="rtl"] .marquee__track { animation-direction: reverse; }

/* --------------------------------------------------------------------------
   Music — album grid
   -------------------------------------------------------------------------- */
.albums {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.9rem);
}

.album {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: transform var(--fast), border-color var(--fast), box-shadow var(--fast);
}
.album:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 18px 46px rgba(0,0,0,0.55);
}

.album__art {
  aspect-ratio: 1;
  position: relative;
  background: linear-gradient(145deg, var(--surface-2), var(--ink-2));
  display: grid;
  place-items: center;
  overflow: hidden;
}
.album__art img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--slow); }
.album:hover .album__art img { transform: scale(1.06); }

/* Generated cover: Persian-tile geometry when no artwork exists */
.album__art .glyph {
  font-family: var(--f-display);
  font-size: 3.2rem;
  color: var(--gold-deep);
  opacity: 0.5;
}
.album__art:not(:has(img))::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(201,162,39,0.06) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(-45deg, rgba(201,162,39,0.06) 0 1px, transparent 1px 16px);
  pointer-events: none;
}
/* Soft scrim so the play button reads on busy artwork */
.album__art:has(img)::after {
  content: '';
  position: absolute; inset: 55% 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(8,8,10,0.55));
  opacity: 0;
  transition: opacity var(--fast);
  pointer-events: none;
}
.album:hover .album__art:has(img)::after { opacity: 1; }

.album__play {
  position: absolute;
  inset-block-end: 0.9rem;
  inset-inline-end: 0.9rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #17130A;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  transition: opacity var(--fast), transform var(--fast), background var(--fast);
  z-index: 2;
}
.album:hover .album__play, .album:focus-within .album__play { opacity: 1; transform: none; }
.album__play:hover { background: var(--gold-lit); }
.album__play svg { width: 17px; height: 17px; margin-inline-start: 2px; }

.album__meta { padding: 1rem 1.1rem 1.2rem; }
.album__meta h3 { font-size: 1.02rem; color: var(--cream); font-weight: 500; }
.album__meta .fa { font-family: var(--f-fa); direction: rtl; color: var(--muted); font-size: 0.88rem; margin-top: 0.15rem; }
.album__meta .yr { font-size: 0.74rem; letter-spacing: 0.14em; color: var(--gold-deep); margin-top: 0.5rem; display: block; }

/* --------------------------------------------------------------------------
   Track list / playlist
   -------------------------------------------------------------------------- */
.playlist { border-top: 1px solid var(--line-soft); }

.track {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--line-soft);
  transition: background var(--fast);
  cursor: pointer;
  text-align: start;
  width: 100%;
}
.track:hover { background: rgba(255,255,255,0.028); }
.track.is-playing { background: rgba(201,162,39,0.07); }

.track__num {
  font-size: 0.82rem;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  display: grid;
  place-items: center;
  position: relative;
}
.track.is-playing .track__num { color: var(--gold); }

/* Animated bars for the currently playing row */
.track.is-playing .track__num span { display: none; }
.track.is-playing .track__num::after {
  content: '';
  width: 15px; height: 14px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 14'%3E%3Crect x='0' y='4' width='3' height='10'%3E%3Canimate attributeName='y' values='4;0;4' dur='0.9s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='10;14;10' dur='0.9s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='6' y='0' width='3' height='14'%3E%3Canimate attributeName='y' values='0;6;0' dur='1.1s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='14;8;14' dur='1.1s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='12' y='3' width='3' height='11'%3E%3Canimate attributeName='y' values='3;0;3' dur='0.75s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='11;14;11' dur='0.75s' repeatCount='indefinite'/%3E%3C/rect%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 14'%3E%3Crect x='0' y='4' width='3' height='10'%3E%3Canimate attributeName='y' values='4;0;4' dur='0.9s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='10;14;10' dur='0.9s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='6' y='0' width='3' height='14'%3E%3Canimate attributeName='y' values='0;6;0' dur='1.1s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='14;8;14' dur='1.1s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='12' y='3' width='3' height='11'%3E%3Canimate attributeName='y' values='3;0;3' dur='0.75s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='11;14;11' dur='0.75s' repeatCount='indefinite'/%3E%3C/rect%3E%3C/svg%3E") center/contain no-repeat;
}

.track__title { min-width: 0; }
.track__title strong { display: block; font-weight: 450; font-size: 0.98rem; color: var(--cream); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.track.is-playing .track__title strong { color: var(--gold-lit); }
.track__title small { color: var(--faint); font-size: 0.8rem; }
.track__title small .fa { font-family: var(--f-fa); }

.track__tag {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.18rem 0.6rem;
  white-space: nowrap;
}
body.lang-fa .track__tag { letter-spacing: 0; text-transform: none; }

.track__yr { font-size: 0.8rem; color: var(--faint); font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   Essentials — compact multi-column track chips
   -------------------------------------------------------------------------- */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 0.6rem;
  border-top: none;
}
.tracks-grid .track {
  grid-template-columns: 46px 1fr auto;
  gap: 0.8rem;
  padding: 0.55rem 0.8rem 0.55rem 0.55rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--ink-2);
  transition: border-color var(--fast), background var(--fast), transform var(--fast);
}
.tracks-grid .track:hover { border-color: var(--line); background: var(--surface); transform: translateY(-2px); }
.tracks-grid .track.is-playing { border-color: var(--gold); background: rgba(201,162,39,0.08); }

.track__art {
  width: 46px; height: 46px;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  flex: none;
  display: grid;
  place-items: center;
}
.track__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tracks-grid .track.is-playing .track__art img { opacity: 0.3; }
.tracks-grid .track.is-playing .track__art::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 16px; height: 15px;
  background: var(--gold-lit);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 14'%3E%3Crect x='0' y='4' width='3' height='10'%3E%3Canimate attributeName='y' values='4;0;4' dur='0.9s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='10;14;10' dur='0.9s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='6' y='0' width='3' height='14'%3E%3Canimate attributeName='y' values='0;6;0' dur='1.1s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='14;8;14' dur='1.1s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='12' y='3' width='3' height='11'%3E%3Canimate attributeName='y' values='3;0;3' dur='0.75s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='11;14;11' dur='0.75s' repeatCount='indefinite'/%3E%3C/rect%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 14'%3E%3Crect x='0' y='4' width='3' height='10'%3E%3Canimate attributeName='y' values='4;0;4' dur='0.9s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='10;14;10' dur='0.9s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='6' y='0' width='3' height='14'%3E%3Canimate attributeName='y' values='0;6;0' dur='1.1s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='14;8;14' dur='1.1s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='12' y='3' width='3' height='11'%3E%3Canimate attributeName='y' values='3;0;3' dur='0.75s' repeatCount='indefinite'/%3E%3Canimate attributeName='height' values='11;14;11' dur='0.75s' repeatCount='indefinite'/%3E%3C/rect%3E%3C/svg%3E") center/contain no-repeat;
}
.tracks-grid .track__title strong { font-size: 0.92rem; }
.tracks-grid .track__title small { font-size: 0.76rem; }
.tracks-grid .track__yr { font-size: 0.74rem; }

/* --------------------------------------------------------------------------
   Sticky player bar
   -------------------------------------------------------------------------- */
.player {
  position: fixed;
  inset: auto 0 0 0;
  height: var(--player-h);
  z-index: 300;
  background: rgba(15, 15, 19, 0.94);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 0 clamp(0.9rem, 3vw, 1.75rem);
  transform: translateY(100%);
  transition: transform var(--slow);
}
.player.is-ready { transform: none; }

/* Scrub bar: generous 18px hit area, hairline track, draggable thumb.
   Always LTR — time flows left to right in every language. */
.player__progress {
  --p: 0%;
  position: absolute;
  inset: -9px 0 auto 0;
  height: 18px;
  background: transparent;
  cursor: pointer;
  touch-action: none;
  z-index: 2;
  direction: ltr;
}
.player__progress::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.12);
}
.player__progress i {
  position: absolute;
  top: 8px;
  left: 0;
  height: 2px;
  width: var(--p);
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-lit));
}
.player__progress b {
  position: absolute;
  top: 9px;
  left: var(--p);
  width: 13px;
  height: 13px;
  margin-left: -6.5px;
  margin-top: -6.5px;
  border-radius: 50%;
  background: var(--gold-lit);
  border: 2px solid #17130A;
  box-shadow: 0 0 10px rgba(201,162,39,0.65), 0 2px 6px rgba(0,0,0,0.5);
  transition: transform var(--fast);
}
.player__progress:hover b,
.player__progress.is-scrubbing b { transform: scale(1.35); }

.player__now { display: flex; align-items: center; gap: 0.85rem; min-width: 0; }
.player__art {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--surface-2), var(--ink));
  border: 1px solid var(--line-soft);
  flex: none;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.player__art img { width: 100%; height: 100%; object-fit: cover; }
.player__art span { font-family: var(--f-display); color: var(--gold-deep); font-size: 1.2rem; }

.player__text { min-width: 0; }
.player__text strong { display: block; font-size: 0.9rem; font-weight: 500; color: var(--cream); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player__text small { font-size: 0.75rem; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }

.player__controls { display: flex; align-items: center; gap: 0.4rem; }
.player__controls button {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: color var(--fast), background var(--fast), transform var(--fast);
}
.player__controls button:hover { color: var(--cream); background: rgba(255,255,255,0.06); }
.player__controls button svg { width: 18px; height: 18px; }
[dir="rtl"] .player__controls .ctl-prev svg,
[dir="rtl"] .player__controls .ctl-next svg { transform: scaleX(-1); }

.player__controls .ctl-play {
  width: 48px; height: 48px;
  background: var(--gold);
  color: #17130A;
}
.player__controls .ctl-play:hover { background: var(--gold-lit); color: #17130A; transform: scale(1.06); }
.player__controls .ctl-play svg { width: 20px; height: 20px; }

.player__side { display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; }
[dir="rtl"] .player__side { justify-content: flex-start; }

.player__time { font-size: 0.76rem; color: var(--faint); font-variant-numeric: tabular-nums; white-space: nowrap; }

.player__vol { display: flex; align-items: center; gap: 0.5rem; }
.player__vol input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 84px; height: 3px;
  background: rgba(255,255,255,0.14);
  border-radius: 3px;
}
.player__vol input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold); cursor: pointer;
}
.player__vol input[type="range"]::-moz-range-thumb {
  width: 11px; height: 11px; border: 0; border-radius: 50%;
  background: var(--gold); cursor: pointer;
}

/* Back-to-top — always on the physical right, in both languages */
#to-top {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--player-h) + 1.1rem);
  z-index: 320;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  background: rgba(15, 15, 19, 0.92);
  color: var(--gold-lit);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--fast), visibility var(--fast), transform var(--fast), background var(--fast), color var(--fast);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
#to-top.is-show { opacity: 1; visibility: visible; transform: none; }
#to-top:hover { background: var(--gold); color: #17130A; }
#to-top svg { width: 18px; height: 18px; }
body.player-hidden #to-top { bottom: 1.1rem; }
body.player-hidden { padding-bottom: 0; }
body.player-hidden .player { transform: translateY(100%); }

/* Player close button — floats on the bar's top-right corner */
.player__close {
  position: absolute;
  top: -13px;
  inset-inline-end: 12px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  place-items: center;
  z-index: 3;
  transition: color var(--fast), border-color var(--fast), transform var(--fast);
}
.player__close:hover { color: var(--cream); border-color: var(--gold); transform: rotate(90deg); }
.player__close svg { width: 11px; height: 11px; }

/* Developer-contact overlay */
#dev-modal {
  position: fixed;
  inset: 0;
  z-index: 420;
  background: rgba(4,4,6,0.9);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--fast), visibility var(--fast);
}
#dev-modal.is-open { opacity: 1; visibility: visible; }
.dev-card {
  width: min(100%, 460px);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.dev-card h3 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 400; color: var(--cream); margin-bottom: 1.2rem; }
.dev-card .field + .field { margin-top: 0.9rem; }
.dev-card .btn { margin-top: 1.2rem; width: 100%; }
.dev-card__close {
  position: absolute;
  top: 0.9rem;
  inset-inline-end: 0.9rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  display: grid;
  place-items: center;
  transition: color var(--fast), border-color var(--fast), transform var(--fast);
}
.dev-card__close:hover { color: var(--cream); border-color: var(--gold); transform: rotate(90deg); }
.dev-card__close svg { width: 13px; height: 13px; }

/* Playback-blocked notice (ad-blockers starving the YouTube engine) */
#play-toast {
  position: fixed;
  bottom: calc(var(--player-h) + 14px);
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: 350;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: min(92vw, 560px);
  padding: 0.7rem 1rem;
  background: rgba(15,15,19,0.96);
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  color: var(--muted);
  box-shadow: 0 12px 34px rgba(0,0,0,0.55);
  animation: toast-in 400ms var(--ease);
}
[dir="rtl"] #play-toast { transform: translateX(50%); }
#play-toast a { color: var(--gold-lit); white-space: nowrap; }
#play-toast a:hover { text-decoration: underline; }
#play-toast button { color: var(--faint); font-size: 1.1rem; line-height: 1; padding: 0 0.2rem; }
#play-toast button:hover { color: var(--cream); }
@keyframes toast-in { from { opacity: 0; transform: translateX(-50%) translateY(10px); } }

/* The YouTube iframe is the audio engine — parked offscreen, never seen. */
#yt-engine { position: fixed; width: 1px; height: 1px; opacity: 0; pointer-events: none; inset-block-end: 0; inset-inline-start: 0; z-index: -1; }

/* --------------------------------------------------------------------------
   Video gallery
   -------------------------------------------------------------------------- */
.videos { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(1rem, 2.4vw, 1.6rem); }

.video {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  text-align: start;
  transition: transform var(--fast), border-color var(--fast);
  width: 100%;
}
.video:hover { transform: translateY(-5px); border-color: var(--line); }

.video__thumb { display: block; position: relative; aspect-ratio: 16/9; background: var(--ink-2); overflow: hidden; }
.video__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--slow), opacity var(--fast); }
.video:hover .video__thumb img { transform: scale(1.05); opacity: 0.72; }
.video__thumb::after {
  content: '';
  position: absolute; inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(8,8,10,0.6);
  border: 1px solid var(--gold);
  backdrop-filter: blur(4px);
  transition: background var(--fast), transform var(--fast);
}
.video__thumb i {
  position: absolute; inset: 50% auto auto 50%;
  transform: translate(-46%, -50%);
  z-index: 2;
  width: 0; height: 0;
  border-left: 13px solid var(--gold-lit);
  border-block: 8px solid transparent;
}
.video:hover .video__thumb::after { background: var(--gold); transform: translate(-50%,-50%) scale(1.08); }
.video:hover .video__thumb i { border-left-color: #17130A; }

.video__meta { display: block; padding: 1rem 1.15rem 1.25rem; }
.video__meta h3 { font-size: 0.98rem; color: var(--cream); font-weight: 500; }
.video__meta p { font-size: 0.82rem; color: var(--faint); margin-top: 0.25rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(4, 4, 6, 0.94);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  padding: clamp(1rem, 5vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity var(--fast), visibility var(--fast);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__frame { width: min(100%, 1080px); aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #000; }
.lightbox__frame iframe { width: 100%; height: 100%; border: 0; }
.lightbox__close {
  position: absolute; inset-block-start: clamp(1rem, 3vw, 2rem); inset-inline-end: clamp(1rem, 3vw, 2rem);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--cream);
  display: grid; place-items: center;
  transition: border-color var(--fast), color var(--fast), transform var(--fast);
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold-lit); transform: rotate(90deg); }

/* --------------------------------------------------------------------------
   Biography
   -------------------------------------------------------------------------- */
.bio { display: grid; grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* The portrait sticks and travels with you while you read */
.bio__portrait {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.bio__portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 30% 50%;
  filter: grayscale(0.2);
  animation: bio-kenburns 20s var(--ease) infinite alternate;
}
@keyframes bio-kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.08) translateY(-1.5%); }
}
.bio__portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,8,10,0.75));
  pointer-events: none;
}
.bio__caption {
  position: absolute;
  inset-block-end: 1.2rem;
  inset-inline: 1.3rem;
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.bio__body p + p { margin-top: 1.15rem; }
.bio__body p { color: var(--muted); }

/* Magazine columns on wide screens — halves the section's height */
@media (min-width: 1080px) {
  .bio__body { columns: 2; column-gap: 2.75rem; }
  .bio__body p { break-inside: avoid; }
  .bio__body .pull { column-span: all; }
}

/* Staggered paragraph reveal */
.bio__body[data-reveal] { opacity: 1; transform: none; }
.bio__body p {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.bio__body p:nth-child(2) { transition-delay: 120ms; }
.bio__body p:nth-child(3) { transition-delay: 240ms; }
.bio__body p:nth-child(4) { transition-delay: 360ms; }
.bio__body p:nth-child(5) { transition-delay: 480ms; }
.bio__body p:nth-child(6) { transition-delay: 600ms; }
.bio__body.is-in p { opacity: 1; transform: none; }
.bio__body strong { color: var(--cream); font-weight: 500; }
.bio__body .pull {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  color: var(--gold-lit);
  line-height: 1.4;
  border-inline-start: 2px solid var(--gold-deep);
  padding-inline-start: 1.4rem;
  margin: 2rem 0;
  font-weight: 300;
}
.bio__body .pull cite { display: block; font-family: var(--f-body); font-size: 0.78rem; font-style: normal; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-top: 0.9rem; }
body.lang-fa .bio__body .pull cite { letter-spacing: 0; text-transform: none; }

/* Facts strip */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; margin-top: 2.5rem; }
.facts div { background: var(--ink-2); padding: 1.2rem 1.25rem; }
.facts dt { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
body.lang-fa .facts dt { letter-spacing: 0; text-transform: none; font-size: 0.82rem; }
.facts dd { margin: 0.4rem 0 0; color: var(--cream); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Timeline
   -------------------------------------------------------------------------- */
.timeline { --tl: 0px; position: relative; padding-inline-start: 2rem; }

/* Faint track… */
.timeline::before {
  content: '';
  position: absolute;
  inset-block: 0.6rem 0.6rem;
  inset-inline-start: 5px;
  width: 1px;
  background: rgba(255, 255, 255, 0.09);
}
/* …and the golden progress line that draws itself as you scroll */
.timeline::after {
  content: '';
  position: absolute;
  inset-block-start: 0.6rem;
  inset-inline-start: 5px;
  width: 1px;
  height: var(--tl);
  background: linear-gradient(180deg, var(--gold-deep), var(--gold-lit));
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.45);
}
/* Traveling tip — rides the end of the progress line, year to year */
.timeline .tl-tip {
  position: absolute;
  inset-block-start: calc(0.6rem + var(--tl));
  inset-inline-start: 5.5px;
  width: 9px; height: 9px;
  margin-inline-start: -4.5px;
  margin-block-start: -4.5px;
  background: var(--gold-lit);
  transform: rotate(45deg);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.9), 0 0 4px rgba(233, 208, 145, 1);
  pointer-events: none;
}

.timeline li {
  position: relative;
  padding-bottom: 2.2rem;
  opacity: 0.18;
  transform: translateY(20px);
  filter: blur(1.5px);
  transition: opacity 550ms var(--ease), transform 550ms var(--ease), filter 550ms var(--ease);
}
.timeline li.is-lit { opacity: 1; transform: none; filter: none; }

.timeline li::before {
  content: '';
  position: absolute;
  inset-block-start: 0.55rem;
  inset-inline-start: -2rem;
  width: 11px; height: 11px;
  background: var(--ink);
  border: 1px solid var(--gold-deep);
  transform: rotate(45deg);
  transition: background 450ms var(--ease), border-color 450ms var(--ease), box-shadow 450ms var(--ease);
}
.timeline li.is-lit::before {
  background: var(--gold);
  border-color: var(--gold-lit);
  box-shadow: 0 0 14px rgba(201, 162, 39, 0.65);
}

.timeline .yr { font-size: 0.74rem; letter-spacing: 0.18em; color: var(--faint); font-variant-numeric: tabular-nums; transition: color 450ms var(--ease); }
.timeline li.is-lit .yr { color: var(--gold-lit); }
body.lang-fa .timeline .yr { letter-spacing: 0; }
.timeline h3 { font-size: 1.05rem; color: var(--cream); margin-top: 0.3rem; font-weight: 500; }
.timeline p { color: var(--muted); font-size: 0.92rem; margin-top: 0.3rem; }

/* --------------------------------------------------------------------------
   Awards
   -------------------------------------------------------------------------- */
.awards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.award {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  background: linear-gradient(160deg, var(--surface) 0%, var(--ink-2) 100%);
  position: relative;
  overflow: hidden;
  transition: border-color var(--fast), transform var(--fast);
}
.award:hover {
  border-color: var(--gold);
  transform: translateY(-7px) rotate(-0.6deg);
  box-shadow: 0 22px 50px rgba(0,0,0,0.5), 0 0 34px rgba(201,162,39,0.12);
}
.award::before {
  content: '';
  position: absolute;
  inset-block-start: -50%;
  inset-inline-end: -30%;
  width: 180px; height: 180px;
  background: radial-gradient(closest-side, rgba(201,162,39,0.14), transparent);
}
/* Still at rest; hovering starts a slow golden light wandering the card.
   The loop begins and ends at the resting position, so it eases in and out
   with no jump or flash. */
.award:hover::before { animation: award-wander 9s ease-in-out infinite; }
@keyframes award-wander {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-55%, 45%) scale(1.25); }
  50%  { transform: translate(-110%, 95%) scale(1.05); }
  75%  { transform: translate(-45%, 40%) scale(1.3); }
  100% { transform: translate(0, 0) scale(1); }
}
.award__icon { display: block; width: 34px; height: 34px; color: var(--gold); margin-bottom: 1rem; }
.award__icon svg { width: 100%; height: 100%; }
/* The trophy does a little victory wiggle */
.award:hover .award__icon {
  color: var(--gold-lit);
  animation: trophy-joy 750ms var(--ease);
  filter: drop-shadow(0 0 8px rgba(201,162,39,0.7));
}
@keyframes trophy-joy {
  0%   { transform: none; }
  22%  { transform: rotate(-14deg) scale(1.18) translateY(-3px); }
  48%  { transform: rotate(10deg)  scale(1.24) translateY(-5px); }
  72%  { transform: rotate(-6deg)  scale(1.15) translateY(-2px); }
  100% { transform: rotate(0)      scale(1.08); }
}
.award:hover .yr { color: var(--gold-lit); }
.award h3 { font-size: 1.05rem; color: var(--cream); }
.award .for { color: var(--gold-lit); font-family: var(--f-display); font-size: 1.25rem; margin-top: 0.35rem; }
.award p { font-size: 0.85rem; color: var(--muted); margin-top: 0.6rem; }
.award .yr { font-size: 0.72rem; letter-spacing: 0.16em; color: var(--faint); margin-top: 0.9rem; display: block; }

/* --------------------------------------------------------------------------
   TV & Film — compact banner cards
   -------------------------------------------------------------------------- */
.st-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.9rem;
}
.st-card {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  text-align: start;
  transition: transform var(--fast), border-color var(--fast), box-shadow var(--fast);
  display: block;
  width: 100%;
  padding: 0;
}
.st-card:not([disabled]) { cursor: pointer; }
.st-card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: 0 14px 34px rgba(0,0,0,0.5); }
.st-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  transition: transform var(--slow), filter var(--fast);
  filter: saturate(0.9);
}
.st-card:hover img { transform: scale(1.07); filter: saturate(1.05); }
.st-card__glyph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-fa);
  font-size: 2.6rem;
  color: var(--gold-deep);
  opacity: 0.55;
  background:
    repeating-linear-gradient(45deg,  rgba(201,162,39,0.05) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(201,162,39,0.05) 0 1px, transparent 1px 14px);
}
.st-card__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.12) 0%, rgba(8,8,10,0.05) 40%, rgba(8,8,10,0.88) 100%);
  pointer-events: none;
}
.st-card__meta {
  position: absolute;
  inset-inline: 0.85rem;
  bottom: 0.7rem;
}
.st-card__meta strong { display: block; color: var(--cream); font-size: 0.94rem; font-weight: 500; line-height: 1.25; }
.st-card__meta small { display: block; color: var(--muted); font-size: 0.76rem; margin-top: 0.15rem; }
.st-card__yr {
  position: absolute;
  top: 0.6rem;
  inset-inline-end: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--gold-lit);
  background: rgba(8,8,10,0.55);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.15rem 0.55rem;
  backdrop-filter: blur(4px);
}
.st-card__play {
  position: absolute;
  top: 0.55rem;
  inset-inline-start: 0.6rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(8,8,10,0.55);
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold-lit);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--fast), transform var(--fast), background var(--fast), color var(--fast);
  backdrop-filter: blur(4px);
}
.st-card__play svg { width: 14px; height: 14px; margin-inline-start: 2px; }
.st-card:hover .st-card__play { opacity: 1; transform: none; }
.st-card:hover .st-card__play { background: var(--gold); color: #17130A; }

/* --------------------------------------------------------------------------
   Tour dates
   -------------------------------------------------------------------------- */
.tour { border-top: 1px solid var(--line-soft); }
.tour__row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: 1.5rem 0.5rem;
  border-bottom: 1px solid var(--line-soft);
  transition: background var(--fast), padding-inline var(--fast);
}
.tour__row:hover { background: rgba(255,255,255,0.025); }
.tour__row.is-past { opacity: 0.45; }

.tour__date { text-align: center; border-inline-end: 1px solid var(--line-soft); padding-inline-end: 1rem; }
.tour__date .d { font-family: var(--f-display); font-size: 2rem; color: var(--gold-lit); line-height: 1; display: block; }
.tour__date .m { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }
.tour__date .y { font-size: 0.7rem; color: var(--faint); display: block; }

.tour__where h3 { font-size: 1.15rem; color: var(--cream); }
.tour__where p { font-size: 0.86rem; color: var(--muted); margin-top: 0.2rem; }

.tour__empty { padding: 3rem 1rem; text-align: center; color: var(--muted); border-bottom: 1px solid var(--line-soft); }

/* Past concerts: collapsed into a compact expandable panel */
.tour-past__toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.4rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color var(--fast), color var(--fast);
}
body.lang-fa .tour-past__toggle { letter-spacing: 0; text-transform: none; font-size: 0.92rem; }
.tour-past__toggle:hover { border-color: var(--gold); color: var(--cream); }
.tour-past__toggle svg { width: 16px; height: 16px; transition: transform var(--fast); }
.tour-past__toggle.is-open svg { transform: rotate(180deg); }

.tour-past__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 550ms var(--ease);
}
.tour-past__panel.is-open { grid-template-rows: 1fr; }
.tour-past__panel > .tour-past__grid { overflow: hidden; }

.tour-past__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.6rem;
  padding-top: 0;
  transition: padding-top 550ms var(--ease);
}
.tour-past__panel.is-open .tour-past__grid { padding-top: 1rem; }

.tour-chip {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--ink-2);
  padding: 0.75rem 0.95rem;
  transition: border-color var(--fast);
}
.tour-chip:hover { border-color: var(--line); }
.tour-chip__date { display: block; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gold-deep); font-variant-numeric: tabular-nums; }
.tour-chip strong { display: block; color: var(--text); font-size: 0.88rem; font-weight: 500; margin-top: 0.25rem; line-height: 1.3; }
.tour-chip small { display: block; color: var(--faint); font-size: 0.76rem; margin-top: 0.15rem; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery { columns: 3; column-gap: 1rem; }
.gallery figure { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius-sm); overflow: hidden; position: relative; border: 1px solid var(--line-soft); }
.gallery img { width: 100%; transition: transform var(--slow), filter var(--fast); filter: grayscale(0.3); }
.gallery figure:hover img { transform: scale(1.04); filter: none; }

/* --------------------------------------------------------------------------
   Press quotes
   -------------------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.quote {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  background: var(--ink-2);
  position: relative;
}
.quote::before {
  content: '\201C';
  font-family: var(--f-display);
  font-size: 5rem;
  color: var(--gold-deep);
  opacity: 0.35;
  position: absolute;
  inset-block-start: -0.5rem;
  inset-inline-start: 1.1rem;
  line-height: 1;
}
.quote blockquote { font-family: var(--f-display); font-size: 1.22rem; line-height: 1.5; color: var(--cream); position: relative; font-weight: 300; }
.quote cite { display: block; margin-top: 1.1rem; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-style: normal; }
body.lang-fa .quote cite { letter-spacing: 0; text-transform: none; }

/* --------------------------------------------------------------------------
   Streaming / listen-on strip
   -------------------------------------------------------------------------- */
.dsps { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.dsp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--muted);
  transition: border-color var(--fast), color var(--fast), background var(--fast), transform var(--fast);
}
.dsp:hover { border-color: var(--gold); color: var(--cream); background: rgba(201,162,39,0.06); transform: translateY(-2px); }
.dsp svg { width: 18px; height: 18px; flex: none; }

.embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); background: var(--surface); min-height: 352px; }
.embed iframe { width: 100%; height: 352px; border: 0; }

/* Listen section: Spotify player + compact platform grid, side by side */
.listen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: stretch;
}
.embed--spotify iframe { height: 100%; min-height: 352px; display: block; }

.dsp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  align-content: stretch;
}
.dsp-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--ink-2);
  transition: border-color var(--fast), background var(--fast), transform var(--fast);
}
.dsp-card:hover { border-color: var(--gold); background: rgba(201,162,39,0.06); transform: translateY(-2px); }
.dsp-card svg { width: 22px; height: 22px; color: var(--gold); flex: none; }
.dsp-card strong { display: block; font-size: 0.92rem; font-weight: 500; color: var(--cream); line-height: 1.25; }
.dsp-card small { display: block; font-size: 0.74rem; color: var(--faint); margin-top: 0.15rem; }

@media (max-width: 900px) {
  .listen-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Contact / booking
   -------------------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.1fr); gap: clamp(2rem, 6vw, 4rem); align-items: start; }

.contact__cards { display: grid; gap: 1rem; }
.contact__card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--ink-2);
  transition: border-color var(--fast);
}
.contact__card:hover { border-color: var(--line); }
.contact__card h3 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
body.lang-fa .contact__card h3 { letter-spacing: 0; text-transform: none; font-size: 0.88rem; }
.contact__card a, .contact__card p { display: block; margin-top: 0.5rem; color: var(--cream); font-size: 1rem; }
.contact__card a:hover { color: var(--gold-lit); }

.form { display: grid; gap: 1rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.5rem; }
body.lang-fa .field label { letter-spacing: 0; text-transform: none; font-size: 0.88rem; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--fast), background var(--fast);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--surface); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form__note { font-size: 0.8rem; color: var(--faint); }
.form__status { font-size: 0.88rem; color: var(--gold-lit); min-height: 1.4em; }

/* Newsletter */
.newsletter {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.25rem);
  background:
    radial-gradient(120% 140% at 85% 10%, rgba(201,162,39,0.10), transparent 55%),
    var(--ink-2);
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.newsletter h2 { font-family: var(--f-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 300; color: var(--cream); }
.newsletter p { color: var(--muted); margin-top: 0.7rem; }
.newsletter form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.newsletter input { flex: 1 1 220px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line-soft); padding: clamp(3rem, 7vw, 5rem) 0 2.5rem; background: var(--ink-2); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer__brand .display { font-size: 1.7rem; color: var(--cream); }
.footer__brand p { color: var(--faint); font-size: 0.88rem; margin-top: 0.7rem; max-width: 34ch; }

.footer h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
body.lang-fa .footer h4 { letter-spacing: 0; text-transform: none; font-size: 0.9rem; }
.footer li { margin-bottom: 0.55rem; }
.footer li a { color: var(--muted); font-size: 0.9rem; transition: color var(--fast); }
.footer li a:hover { color: var(--gold-lit); }

.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: border-color var(--fast), color var(--fast), transform var(--fast), background var(--fast);
}
.socials a:hover { border-color: var(--gold); color: var(--gold-lit); transform: translateY(-3px); background: rgba(201,162,39,0.07); }
.socials svg { width: 18px; height: 18px; }

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--faint);
}

/* --------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   RTL adjustments
   -------------------------------------------------------------------------- */
[dir="rtl"] .timeline { padding-inline-start: 2rem; }
[dir="rtl"] .hero__inner { text-align: right; }
[dir="rtl"] .track { text-align: right; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .bio, .contact, .newsletter { grid-template-columns: 1fr; }

  /* No sticky portrait on small screens — it must scroll away with the flow */
  .bio__portrait { position: static; max-width: 420px; }
  .bio__portrait img { aspect-ratio: 4/3; object-position: 30% 20%; animation: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }

  .hero__grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero__visual { order: -1; height: clamp(300px, 42vh, 420px); margin-top: 0.5rem; }
  .hv__card { width: min(62%, 300px); }
  .hv__fa { font-size: 4.5rem; }
  .hero { padding-top: calc(var(--nav-h) + 1.5rem); }

  /* Stats on phones: a clean 2×2 grid; the scroll hint collides — drop it */
  .hero__stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 1rem;
    padding-top: 1.6rem;
  }
  .hero__stats div strong { font-size: 1.55rem; }
  .hero__stats div span { font-size: 0.62rem; letter-spacing: 0.12em; display: block; margin-top: 0.25rem; }
  body.lang-fa .hero__stats div span { font-size: 0.78rem; letter-spacing: 0; }
  .scroll-hint { display: none; }
}

@media (max-width: 780px) {
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    background: rgba(8,8,10,0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0 2rem;
    gap: 0.35rem;
    border-bottom: 1px solid var(--line-soft);
    transform: translateY(-120%);
    transition: transform var(--fast);
  }
  .nav.is-open .nav__links { transform: none; }
  .nav__links a { padding: 0.75rem 0; font-size: 0.95rem; }
  .nav__burger { display: flex; }

  .track { grid-template-columns: 36px 1fr auto; gap: 0.75rem; }
  .track__tag { display: none; }

  /* TV & Film on phones: two banners per row */
  .st-grid { grid-template-columns: 1fr 1fr; gap: 0.55rem; }
  .st-card__meta { inset-inline: 0.6rem; bottom: 0.5rem; }
  .st-card__meta strong { font-size: 0.78rem; }
  .st-card__meta small { font-size: 0.66rem; }
  .st-card__yr { font-size: 0.58rem; padding: 0.1rem 0.45rem; }
  .st-card__play { width: 28px; height: 28px; }
  .st-card__play svg { width: 11px; height: 11px; }

  /* Listen Anywhere on phones: two platforms per row, tighter cards */
  .dsp-grid { grid-template-columns: 1fr 1fr; gap: 0.55rem; }
  .dsp-card { padding: 0.65rem 0.75rem; gap: 0.6rem; }
  .dsp-card svg { width: 18px; height: 18px; }
  .dsp-card strong { font-size: 0.8rem; }
  .dsp-card small { font-size: 0.64rem; }

  /* Music videos on phones: two per row */
  .videos { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .video__meta { padding: 0.6rem 0.7rem 0.8rem; }
  .video__meta h3 { font-size: 0.78rem; }
  .video__meta p { font-size: 0.68rem; }
  .video__thumb::after { width: 40px; height: 40px; }
  .video__thumb i { border-left-width: 10px; border-block-width: 6px; }

  /* Discography on phones: two covers per row */
  .albums { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .album__meta { padding: 0.7rem 0.8rem 0.9rem; }
  .album__meta h3 { font-size: 0.86rem; }
  .album__meta .fa { font-size: 0.76rem; }
  .album__meta .yr { font-size: 0.66rem; margin-top: 0.3rem; }
  .album__play { width: 38px; height: 38px; inset-block-end: 0.6rem; inset-inline-end: 0.6rem; opacity: 1; transform: none; }

  /* Essentials on phones: two compact chips per row, small art */
  .tracks-grid { grid-template-columns: 1fr 1fr; gap: 0.45rem; }
  .tracks-grid .track { grid-template-columns: 30px 1fr; gap: 0.5rem; padding: 0.45rem 0.55rem; }
  .track__art { width: 30px; height: 30px; border-radius: 5px; }
  .tracks-grid .track__yr { display: none; }
  .tracks-grid .track__title strong { font-size: 0.78rem; }
  .tracks-grid .track__title small { font-size: 0.66rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; }
  .tracks-grid .track.is-playing .track__art::after { width: 12px; height: 11px; }

  .player { grid-template-columns: 1fr auto; gap: 0.6rem; }
  .player__side { display: none; }
  .player__art { width: 42px; height: 42px; }

  .tour__row { grid-template-columns: 78px 1fr; row-gap: 0.9rem; }
  .tour__row .btn { grid-column: 2; justify-self: start; }
  .tour__date .d { font-size: 1.6rem; }

  .footer__top { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* OG-capture mode: hero only, no chrome */
body.og-mode .nav,
body.og-mode .player,
body.og-mode .scroll-hint { display: none !important; }
body.og-mode { padding-bottom: 0; }
body.og-mode .hero { padding-top: 2.5rem; }

/* Print — doubles as a plain-text EPK */
@media print {
  .nav, .player, .hero__bg, .marquee, .scroll-hint, .lightbox, .socials { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .section { padding: 1rem 0; }
  h1, h2, h3, .display { color: #000; }
}
