/* ============================================================
   YIGITOGLU — a hypnotic journey through low frequencies
   Palette: pure monochrome — black / white / greys
   Type:    Archivo (variable width) · Cormorant Garamond · IBM Plex Mono
   ============================================================ */

:root {
  --void:   #050505;
  --carbon: #0D0D0D;
  --coal:   #151515;
  --smoke:  #EDEDED;
  --ash:    #8A8A8A;
  --ember:  #FFFFFF;
  --ember-dim: rgba(255, 255, 255, 0.35);
  --hairline: rgba(237, 237, 237, 0.10);
  --font-display: "Archivo", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-mono: "IBM Plex Mono", monospace;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--smoke);
  font-family: var(--font-display);
  font-variation-settings: "wdth" 100, "wght" 380;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--ember); color: var(--void); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--coal); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--ember-dim); }

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

.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.serif { font-family: var(--font-serif); }

:focus-visible { outline: 1px solid var(--ember); outline-offset: 4px; }

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 9s steps(6) infinite;
}
@keyframes grain-shift {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-4%,3%); }
  40% { transform: translate(3%,-4%); }
  60% { transform: translate(-3%,-2%); }
  80% { transform: translate(4%,2%); }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  mix-blend-mode: normal;
  background: linear-gradient(to bottom, rgba(7,5,5,0.85), transparent);
  transition: background 0.4s;
}
.nav.is-scrolled {
  background: rgba(7,5,5,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav-brand {
  font-variation-settings: "wdth" 125, "wght" 800;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
}
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--smoke); }
.nav-links a.nav-cta {
  color: var(--ember);
  border: 1px solid var(--ember-dim);
  padding: 0.5em 1.1em;
  transition: background 0.25s, color 0.25s;
}
.nav-links a.nav-cta:hover { background: var(--ember); color: var(--void); }
.nav-links a.nav-epk {
  color: var(--smoke);
  border: 1px solid var(--hairline);
  padding: 0.5em 1.1em;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.nav-links a.nav-epk:hover { background: var(--smoke); color: var(--void); border-color: var(--smoke); }
.nav-burger { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 6rem var(--pad) 4rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img,
.hero-bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.92) contrast(1.08) brightness(0.75);
  animation: hero-drift 26s ease-in-out infinite alternate;
}
.hero-bg video { opacity: 0; transition: opacity 1.2s ease; }
.hero-bg video.is-playing { opacity: 1; }
@keyframes hero-drift {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(7,5,5,0.72) 0%, rgba(7,5,5,0.35) 40%, rgba(7,5,5,0.55) 70%, var(--void) 100%),
    radial-gradient(ellipse at center 45%, transparent 20%, rgba(7,5,5,0.55) 100%);
}
.hero-eyebrow, .hero-name, .hero-tag, .hero-meta, .hero-scroll, .hero-rail { position: relative; z-index: 2; }

/* isim canvas'ı: harfler videoya açılan pencereler
   (canvas replaced element olduğundan inset tek başına boyutlandırmaz) */
.hero-name-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* canvas devraldığında metin gizlenir (a11y/SEO için DOM'da kalır) */
.hero-name.is-canvas {
  opacity: 0 !important;
  transition: opacity 0.6s ease;
}

/* imleci takip eden sahne ışığı */
.hero-glow {
  position: absolute;
  top: 0; left: 0;
  width: 560px; height: 560px;
  margin: -280px 0 0 -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 62%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s;
  will-change: transform;
}
.hero:hover .hero-glow { opacity: 1; }

.hero-eyebrow { color: var(--ash); margin-bottom: 1.6rem; }
.hero-name {
  font-variation-settings: "wdth" 125, "wght" 850;
  font-size: clamp(2.4rem, 10vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0.015em;
  color: var(--smoke);
  text-shadow: 0 0 90px rgba(255, 255, 255, 0.18);
}
.hero-name span {
  display: inline-block;
  font-variation-settings: inherit;
  opacity: 0;
  transform: translateY(0.45em);
  animation: letter-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: font-variation-settings, transform;
}
.hero-name span:nth-child(1) { animation-delay: 0.05s; }
.hero-name span:nth-child(2) { animation-delay: 0.11s; }
.hero-name span:nth-child(3) { animation-delay: 0.17s; }
.hero-name span:nth-child(4) { animation-delay: 0.23s; }
.hero-name span:nth-child(5) { animation-delay: 0.29s; }
.hero-name span:nth-child(6) { animation-delay: 0.35s; }
.hero-name span:nth-child(7) { animation-delay: 0.41s; }
.hero-name span:nth-child(8) { animation-delay: 0.47s; }
.hero-name span:nth-child(9) { animation-delay: 0.53s; }
@keyframes letter-in {
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  font-variation-settings: "wdth" 122, "wght" 250;
  font-size: clamp(0.68rem, 1.15vw, 0.95rem);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 1.6rem;
  opacity: 0;
  animation: tag-in 1.6s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}
.hero-tag span { color: var(--ember); }
@keyframes tag-in {
  from { opacity: 0; letter-spacing: 0.6em; }
  to   { opacity: 0.92; letter-spacing: 0.36em; }
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center;
  margin-top: 2.6rem;
  color: var(--ash);
}
.hero-meta i { width: 3px; height: 3px; background: var(--ember); border-radius: 50%; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--ash);
  transition: color 0.3s;
}
.hero-scroll:hover { color: var(--ember); }
.hero-scroll svg { animation: scroll-pulse 2.2s ease-in-out infinite; }
@keyframes scroll-pulse {
  0%,100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}
.hero-rail {
  position: absolute; right: 1.4rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  color: var(--ash);
  opacity: 0.55;
  white-space: nowrap;
}

/* ---------- sections (shared) ---------- */
.section { padding: clamp(5rem, 10vw, 8.5rem) var(--pad); max-width: 1280px; margin: 0 auto; }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.eyebrow { color: var(--ember); margin-bottom: 1rem; }
.eyebrow::before { content: "— "; color: var(--ember-dim); }
.section-title {
  font-variation-settings: "wdth" 118, "wght" 750;
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
  color: var(--ember);
  letter-spacing: 0.02em;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- bio ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.bio-drop {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.35;
  color: var(--smoke);
}
.bio-drop::first-letter { color: var(--ember); font-style: italic; }
.bio-body p { color: var(--ash); margin-bottom: 1.3em; font-size: 1.02rem; }
.bio-body strong { color: var(--smoke); font-variation-settings: "wdth" 105, "wght" 560; }
.bio-body em { color: var(--smoke); font-style: italic; }
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.stat {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 1.6rem 1.2rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: background 0.3s;
}
.stat:hover { background: var(--carbon); }
.stat-num {
  font-variation-settings: "wdth" 120, "wght" 800;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1;
}
.stat-num sup { font-size: 0.5em; color: var(--ember); }
.stat-label { color: var(--ash); }

/* ---------- music ---------- */
.music-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.player-caption { color: var(--ash); margin-bottom: 0.9rem; }
.music-player iframe { border-radius: 14px; display: block; }
.player-links { display: flex; gap: 1.6rem; margin-top: 1rem; }
.player-links a { color: var(--ash); transition: color 0.25s; }
.player-links a:hover { color: var(--ember); }

.release-ledger { list-style: none; border-top: 1px solid var(--hairline); }
.release {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1.2rem;
  align-items: baseline;
  padding: 1.15rem 0.4rem;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.3s, padding-left 0.3s;
}
.release:hover { background: var(--carbon); padding-left: 1rem; }
.release-year { color: var(--ember); }
.release-title {
  font-variation-settings: "wdth" 110, "wght" 600;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.release-label { color: var(--ash); }
.badge {
  display: inline-block;
  background: var(--ember);
  color: var(--void);
  font-weight: 500;
  padding: 0.18em 0.6em;
  margin-left: 0.6em;
  vertical-align: middle;
  letter-spacing: 0.1em;
}
.release-discog { list-style: none; }
.release-discog a {
  display: block;
  padding: 1.05rem 0.4rem;
  color: var(--ash);
  transition: color 0.25s, padding-left 0.3s;
}
.release-discog a:hover { color: var(--ember); padding-left: 1rem; }

/* ---------- sets ---------- */
.sets-featured { margin-bottom: 1.6rem; }
.sets-featured--more { margin-top: 1.6rem; }
.yt-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  background: var(--carbon);
}
.yt-facade img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.8);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
}
.yt-facade:hover img { transform: scale(1.03); filter: saturate(1) brightness(0.9); }
.yt-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  border: 1px solid rgba(234,228,220,0.55);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  background: rgba(7,5,5,0.35);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.yt-play::after {
  content: "";
  position: absolute; top: 50%; left: 53%;
  transform: translate(-50%, -50%);
  border-left: 16px solid var(--smoke);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.yt-facade:hover .yt-play { background: var(--ember); border-color: var(--ember); transform: translate(-50%, -50%) scale(1.06); }
.yt-facade:hover .yt-play::after { border-left-color: var(--void); }
.yt-caption {
  position: absolute; left: 0; bottom: 0;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(to top, rgba(7,5,5,0.85), transparent);
  width: 100%;
  color: var(--smoke);
}
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.sets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.set-card { position: relative; aspect-ratio: 16 / 9; background: var(--carbon); }
.set-card iframe { display: block; width: 100%; height: 100%; border: 0; }
.set-card .yt-caption { pointer-events: none; }
.set-card .yt-facade { height: 100%; }

.sets-more { list-style: none; margin-top: 1.8rem; border-top: 1px solid var(--hairline); }
.sets-more li { border-bottom: 1px solid var(--hairline); }
.sets-more a {
  display: block;
  padding: 1rem 0.4rem;
  color: var(--ash);
  transition: color 0.25s, padding-left 0.3s;
}
.sets-more a:hover { color: var(--ember); padding-left: 1rem; }

/* ---------- tour ---------- */
.tour-upcoming { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.tour-row {
  display: grid;
  grid-template-columns: 7rem 1fr auto auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.3rem 0.4rem;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.3s, padding-left 0.3s;
}
.tour-row:first-child { border-top: 1px solid var(--hairline); }
.tour-row:hover { background: var(--carbon); padding-left: 1rem; }
.tour-date { color: var(--ember); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.tour-venue {
  font-variation-settings: "wdth" 112, "wght" 640;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.tour-city { color: var(--ash); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
.tour-tickets {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ember);
  border: 1px solid var(--ember-dim);
  padding: 0.5em 1.1em;
  transition: background 0.25s, color 0.25s;
}
.tour-tickets:hover { background: var(--ember); color: var(--void); }
.tour-empty {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 2.6rem 0.4rem;
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  align-items: center; justify-content: space-between;
}
.tour-empty-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--smoke);
}
.tour-past-label { color: var(--ash); margin-bottom: 1.4rem; }
.venue-cloud { list-style: none; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.venue-cloud li {
  border: 1px solid var(--hairline);
  padding: 0.55em 1em;
  font-variation-settings: "wdth" 108, "wght" 520;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}
.venue-cloud li:hover { border-color: var(--ember-dim); color: var(--ember); }
.venue-cloud li span { color: var(--ash); font-family: var(--font-mono); font-size: 0.62rem; margin-left: 0.6em; letter-spacing: 0.14em; }
.venue-cloud li:hover span { color: var(--ember-dim); }
.tour-alongside { margin-top: clamp(2.5rem, 5vw, 4rem); }
.alongside-line {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.7;
  color: var(--ash);
  max-width: 56ch;
}

/* ---------- gallery ---------- */
.gallery { max-width: none; padding-left: 0; padding-right: 0; }
.gallery .section-head { padding: 0 var(--pad); max-width: 1280px; margin-left: auto; margin-right: auto; }
.slider { position: relative; overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16 / 8;
  max-height: 78vh;
  overflow: hidden;
}
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.slide--detail img { object-position: 78% 32%; transform: scale(1.4); transform-origin: 78% 32%; }
.slide figcaption {
  position: absolute; left: var(--pad); bottom: 1.4rem;
  color: var(--smoke);
  background: rgba(7,5,5,0.55);
  backdrop-filter: blur(8px);
  padding: 0.55em 1em;
}
.slider-ui {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem;
  padding: 1.4rem 0 0;
}
.slider-btn {
  background: none;
  border: 1px solid var(--hairline);
  color: var(--smoke);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  width: 46px; height: 46px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.slider-btn:hover { border-color: var(--ember); background: var(--ember); color: var(--void); }
.slider-count { color: var(--ash); }
.slider-count #slideNow { color: var(--ember); }

/* ---------- label ---------- */
.label-card {
  background: var(--carbon);
  border: 1px solid var(--hairline);
  padding: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.label-card::before {
  content: "SS";
  position: absolute;
  right: -0.1em; top: 50%;
  transform: translateY(-50%);
  font-variation-settings: "wdth" 125, "wght" 900;
  font-size: clamp(10rem, 26vw, 22rem);
  line-height: 1;
  color: rgba(234,228,220,0.03);
  pointer-events: none;
}
.label-name {
  font-variation-settings: "wdth" 122, "wght" 820;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 1.2rem 0 1.6rem;
}
.label-desc { color: var(--ash); max-width: 52ch; font-size: 1.02rem; }
.label-desc strong { color: var(--smoke); }
.label-links { display: flex; gap: 1.8rem; margin-top: 2rem; }
.label-links a { color: var(--ember); transition: color 0.25s; }
.label-links a:hover { color: var(--smoke); }

/* ---------- connect ---------- */
.connect { text-align: center; }
.connect .section-head { margin-bottom: 3rem; }
.socials {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.2rem);
}
.social {
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  color: var(--ash);
  transition: color 0.3s, transform 0.3s;
}
.social svg {
  width: 54px; height: 54px;
  padding: 14px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  transition: border-color 0.3s, background 0.3s;
}
.social:hover { color: var(--smoke); transform: translateY(-4px); }
.social:hover svg { border-color: var(--ember); background: rgba(255,255,255,0.07); color: var(--ember); }
.booking { margin-top: clamp(3rem, 6vw, 5rem); }
.booking-line {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--ash);
  margin-bottom: 0.6rem;
}
.booking-mail {
  font-variation-settings: "wdth" 115, "wght" 650;
  font-size: clamp(1.3rem, 3.4vw, 2.6rem);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--ember-dim);
  transition: color 0.3s, border-color 0.3s;
}
.booking-mail:hover { color: var(--ember); border-color: var(--ember); }

/* ---------- biography page ---------- */
.biopage-bg { position: fixed; inset: 0; z-index: -2; }
.biopage-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 68% 18%;
  filter: saturate(0.85) brightness(0.92);
}
.biopage-veil {
  position: fixed; inset: 0; z-index: -1;
  background:
    linear-gradient(to right, rgba(5,5,5,0.97) 0%, rgba(5,5,5,0.9) 40%, rgba(5,5,5,0.45) 72%, rgba(5,5,5,0.6) 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.55), transparent 26%, rgba(5,5,5,0.35) 78%, rgba(5,5,5,0.9) 100%);
}
.biopage-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(8rem, 16vh, 11rem) var(--pad) clamp(4rem, 8vw, 6rem);
}
.biopage-head { margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.biopage-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  color: var(--ash);
  margin-top: 1.2rem;
}
.biopage-article { max-width: 60ch; }
.biopage-lede {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.5;
  color: var(--smoke);
  margin-bottom: 2.2rem;
}
.biopage-lede::first-letter {
  font-size: 3.1em;
  float: left;
  line-height: 0.82;
  padding-right: 0.12em;
  font-style: italic;
}
.biopage-par {
  color: var(--ash);
  font-size: 1.04rem;
  line-height: 1.85;
  margin-bottom: 1.6em;
}
.biopage-par strong { color: var(--smoke); font-variation-settings: "wdth" 104, "wght" 540; }
.biopage-pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.4;
  color: var(--smoke);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 2rem 0;
  margin: 2.6rem 0;
}
.biopage-pull b { font-style: normal; font-family: var(--font-mono); font-weight: 400; font-size: 0.5em; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); display: block; margin-top: 1rem; }
.biopage-close {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.55;
  color: var(--smoke);
  margin-top: 2.4rem;
}
.biopage-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: clamp(3rem, 6vw, 4.5rem); }
.biopage-ctas a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--hairline);
  padding: 0.85em 1.6em;
  color: var(--smoke);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.biopage-ctas a:hover { background: var(--smoke); color: var(--void); border-color: var(--smoke); }
.biopage-ctas a.primary { background: var(--smoke); color: var(--void); border-color: var(--smoke); }
.biopage-ctas a.primary:hover { background: transparent; color: var(--smoke); }
@media (max-width: 860px) {
  .biopage-bg img { object-position: 62% 12%; opacity: 0.55; }
  .biopage-veil { background: linear-gradient(to bottom, rgba(5,5,5,0.85), rgba(5,5,5,0.72) 40%, rgba(5,5,5,0.94) 100%); }
}

/* index bio bölümünden uzun biyografiye link */
.bio-more {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--smoke);
  border-bottom: 1px solid var(--ember-dim);
  padding-bottom: 0.2em;
  transition: color 0.25s, border-color 0.25s;
}
.bio-more:hover { color: var(--ember); border-color: var(--ember); }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 3rem var(--pad) 2rem;
  overflow: hidden;
}
.footer-name {
  font-variation-settings: "wdth" 125, "wght" 880;
  font-size: clamp(4rem, 16.5vw, 16rem);
  line-height: 0.85;
  text-align: center;
  color: rgba(234,228,220,0.045);
  user-select: none;
  white-space: nowrap;
}
.footer-row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  color: var(--ash);
  margin-top: 2rem;
}
.footer-row a:hover { color: var(--ember); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .bio-grid, .music-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .stat:last-child { grid-column: span 2; }
  .sets-grid { grid-template-columns: 1fr; }
  .hero-rail { display: none; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(7,5,5,0.97);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .nav-links.is-open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1rem; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 7px;
    background: none; border: none; cursor: pointer;
    z-index: 110; padding: 6px;
  }
  .nav-burger span {
    display: block; width: 26px; height: 1px;
    background: var(--smoke);
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .tour-row { grid-template-columns: 1fr auto; gap: 0.5rem 1.4rem; }
  .tour-date { grid-column: 1 / -1; }
  .slide { aspect-ratio: 4 / 3; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .hero-bg img, .hero-scroll svg { animation: none; }
  .hero-tag { animation: none; opacity: 0.92; }
  .hero-name span { animation: none; opacity: 1; transform: none; }
  .hero-glow { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .slider-track { transition: none; }
}
