/* Cafe de Mola — sıcak, sade, yalın */

:root {
  --cream: #f3dfc4;
  --cream-2: #eed5b5;
  --paper: #faf1e4;
  --paper-2: #fff8ee;
  --ink: #3b1f10;
  --ink-2: #6b4a36;
  --ink-3: #9a7d6a;
  --terracotta: #b8562e;
  --terracotta-2: #a04a26;
  --olive: #5e6a2e;
  --line: rgba(59, 31, 16, 0.14);
  --line-2: rgba(59, 31, 16, 0.08);
  --shadow: 0 20px 50px -20px rgba(59, 31, 16, 0.45);
  --radius: 18px;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 88px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }

/* ---------- Header ---------- */
.top {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 24px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-notes { width: 30px; height: 15px; color: var(--ink); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 100, "opsz" 40;
}
.brand-name.small { font-size: 17px; }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a {
  text-decoration: none; font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  padding: 4px 0; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.nav a:hover { color: var(--ink); border-color: var(--terracotta); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(420px, 60vh, 620px);
  display: grid; place-items: center;
  text-align: center;
}
/* Banner'ın iki kenarı (pikap köşesi ve teras) sahneyi çevreler; orta alan temiz krem kalır */
.hero-art { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 40%, var(--paper) 0%, var(--cream) 70%); }
.hero-art::before, .hero-art::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 38%;
  background-image: url("../assets/banner.jpg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  filter: saturate(0.92);
}
.hero-art::before {
  left: 0; background-position: left center;
  -webkit-mask-image: linear-gradient(to right, #000 25%, transparent 100%);
  mask-image: linear-gradient(to right, #000 25%, transparent 100%);
}
.hero-art::after {
  right: 0; background-position: right center;
  -webkit-mask-image: linear-gradient(to left, #000 25%, transparent 100%);
  mask-image: linear-gradient(to left, #000 25%, transparent 100%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(to bottom, rgba(243, 223, 196, 0), var(--cream));
  pointer-events: none;
}
.hero-inner { position: relative; padding: 56px 20px 40px; max-width: 640px; }
.hero-notes { width: 64px; height: 32px; color: var(--ink); margin: 0 auto 6px; }
.wordmark {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 8vw, 78px);
  line-height: 1;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.divider { width: 160px; height: 20px; margin: 14px auto 18px; }
.divider-lg { width: 200px; height: 25px; }
.hero-lead {
  margin: 0 auto; max-width: 520px;
  font-size: clamp(15.5px, 1.6vw, 17.5px); color: var(--ink-2);
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.hero-meta { margin: 22px 0 0; font-size: 13px; color: var(--ink-2); letter-spacing: 0.02em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: transform .15s, background .2s, border-color .2s, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--cream); box-shadow: 0 10px 24px -12px rgba(59, 31, 16, 0.7); }
.btn-primary:hover { background: #2c170b; }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: rgba(59, 31, 16, 0.06); }

/* ---------- Stage (player) ---------- */
.stage {
  position: relative; z-index: 1;
  max-width: var(--max); margin: -10px auto 0; padding: 0 clamp(16px, 4vw, 40px);
  display: grid; grid-template-columns: minmax(280px, 460px) 1fr; gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.stage-frame {
  padding: 10px; background: var(--paper-2); border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow); border: 1px solid var(--line-2);
}
.stage-player { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #1a0e07; }
/* Kalıcı oynatıcı: sayfadaki yuvanın üstüne konumlanır, sayfa değişince taşınır */
.dock { position: absolute; z-index: 5; border-radius: var(--radius); overflow: hidden; background: #1a0e07; top: -9999px; left: -9999px; width: 320px; height: 180px; }
.dock.is-docked { position: fixed; top: auto; left: 12px; bottom: 76px; width: 128px; height: 72px; z-index: 45; border-radius: 10px; box-shadow: var(--shadow); }
.yt-shell, .yt-shell iframe, #yt { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-shell { pointer-events: none; } /* oynatıcı üzerinden YouTube'a gidilemez */
.stage-cover { position: absolute; inset: 0; display: grid; place-items: center; transition: opacity .35s; z-index: 1; }
.stage-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stage-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26, 14, 7, 0.35), rgba(26, 14, 7, 0.05)); }
.dock.is-playing:not(.is-audio) .stage-cover { opacity: 0; pointer-events: none; }
.dock.is-playing.is-audio .cover-play { display: none; }
.cover-play {
  position: relative; z-index: 1;
  width: 74px; height: 74px; border-radius: 50%; border: 0;
  background: var(--paper-2); color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.5);
  transition: transform .2s;
}
.cover-play svg { margin-left: 3px; }
.cover-play:hover { transform: scale(1.06); }

.eyebrow {
  margin: 0 0 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta);
}
.stage-title {
  margin: 0; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px); line-height: 1.12; letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 60, "opsz" 72;
}
.stage-sub { margin: 10px 0 0; color: var(--ink-2); font-size: 15.5px; max-width: 480px; }
.stage-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; min-height: 26px; }
.tag {
  font-size: 12px; font-weight: 500; color: var(--ink-2); text-decoration: none;
  padding: 4px 10px; border-radius: 999px; background: rgba(59, 31, 16, 0.07); transition: background .2s, color .2s;
}
a.tag:hover { background: var(--ink); color: var(--cream); }

.controls { display: flex; align-items: center; gap: 8px; margin-top: 22px; }
.ctl {
  width: 44px; height: 44px; border-radius: 50%; border: 0; background: transparent;
  display: grid; place-items: center; color: var(--ink); transition: background .2s, transform .15s;
}
.ctl:hover { background: rgba(59, 31, 16, 0.08); }
.ctl:active { transform: scale(0.95); }
.ctl-main { width: 58px; height: 58px; background: var(--ink); color: var(--cream); margin: 0 4px; }
.ctl-main:hover { background: #2c170b; }
.ctl-main .ic-play { margin-left: 3px; }
.ctl-main .ic-pause { display: none; }
.is-playing .ctl-main .ic-play { display: none; }
.is-playing .ctl-main .ic-pause { display: block; }
.ctl-toggle { color: var(--ink-3); }
.ctl-toggle[aria-pressed="true"] { color: var(--terracotta); background: rgba(184, 86, 46, 0.12); }

.progress { margin-top: 16px; max-width: 480px; cursor: pointer; }
.progress-track { height: 4px; border-radius: 4px; background: rgba(59, 31, 16, 0.14); overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: var(--terracotta); border-radius: 4px; transition: width .25s linear; }
.progress:hover .progress-track { height: 6px; margin-top: -1px; }
.progress-times { display: flex; justify-content: space-between; margin-top: 6px; font-size: 12px; color: var(--ink-3); font-variant-numeric: tabular-nums; }

/* ---------- Sections ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(48px, 7vw, 84px) clamp(16px, 4vw, 40px) 0; }
.section-head { margin-bottom: 22px; }
.section-head h2, .license h2 {
  margin: 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.01em; font-variation-settings: "SOFT" 60, "opsz" 72;
}
.section-head p { margin: 6px 0 0; color: var(--ink-2); }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line); background: transparent; border-radius: 999px;
  padding: 9px 16px; font-size: 14px; font-weight: 500; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, color .2s, border-color .2s;
}
.chip small { font-weight: 500; color: var(--ink-3); font-size: 12px; }
.chip:hover { background: var(--paper); color: var(--ink); }
.chip[aria-selected="true"] { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.chip[aria-selected="true"] small { color: rgba(243, 223, 196, 0.7); }

.search {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper);
  color: var(--ink-3); min-width: 220px;
}
.search input { border: 0; background: transparent; outline: 0; font: inherit; color: var(--ink); width: 100%; }
.search input::placeholder { color: var(--ink-3); }
.search:focus-within { border-color: var(--ink-3); }

/* ---------- Track list ---------- */
.tracks { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.track {
  display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 16px;
  padding: 13px 8px; border-bottom: 1px solid var(--line-2);
  cursor: pointer; border-radius: 8px; transition: background .15s;
}
.track:hover { background: rgba(255, 248, 238, 0.7); }
.track-n { font-size: 13px; color: var(--ink-3); font-variant-numeric: tabular-nums; text-align: center; position: relative; }
.track-n .n { display: block; }
.track-n .p { display: none; color: var(--ink); }
.track:hover .track-n .n { display: none; }
.track:hover .track-n .p { display: block; }
.track.is-current .track-n .n { display: none; }
.track.is-current .track-n .p { display: block; color: var(--terracotta); }
.track-main { min-width: 0; }
.track-title { font-weight: 600; font-size: 15.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-link { text-decoration: none; }
.track-link:hover { text-decoration: underline; text-decoration-color: var(--terracotta); text-underline-offset: 3px; }
.bar-title { text-decoration: none; display: block; }
.bar-title:hover { text-decoration: underline; text-underline-offset: 3px; }
.track-sub { font-size: 13.5px; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.track-dur { font-size: 13px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.track.is-current { background: var(--paper-2); }
.track.is-current .track-title { color: var(--terracotta-2); }
.bars { display: inline-flex; gap: 2px; align-items: flex-end; height: 14px; }
.bars i { width: 3px; background: currentColor; border-radius: 2px; animation: eq 0.9s ease-in-out infinite; height: 40%; }
.bars i:nth-child(2) { animation-delay: .2s; height: 90%; }
.bars i:nth-child(3) { animation-delay: .4s; height: 60%; }
.is-paused .bars i { animation-play-state: paused; }
@keyframes eq { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
.empty { color: var(--ink-3); padding: 24px 8px; }

/* ---------- Sets ---------- */
.sets { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.set {
  position: relative; display: grid; grid-template-columns: 112px 1fr; gap: 16px; align-items: center;
  padding: 12px; background: var(--paper-2); border: 1px solid var(--line-2); border-radius: var(--radius);
  cursor: pointer; text-align: left; transition: transform .2s, box-shadow .2s;
}
.set:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.set img { width: 112px; height: 112px; object-fit: cover; border-radius: 12px; }
.set-title { font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.2; font-variation-settings: "SOFT" 60, "opsz" 40; }
.set-sub { font-size: 13.5px; color: var(--ink-2); margin-top: 4px; }
.set-dur { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--terracotta); letter-spacing: 0.06em; text-transform: uppercase; }
.set-cta {
  display: grid; grid-template-columns: 1fr; place-items: start; gap: 6px;
  background: transparent; border: 1px dashed var(--line); box-shadow: none;
}
.set-cta:hover { transform: none; box-shadow: none; background: var(--paper); }

/* ---------- License ---------- */
.license { text-align: center; max-width: 720px; padding-bottom: 0; }
.license h2 { margin-top: 8px; }
.license p { color: var(--ink-2); margin: 14px auto 0; max-width: 600px; }
.license .muted { color: var(--ink-3); font-size: 14px; }
.license .btn { margin-top: 24px; }

/* ---------- Footer ---------- */
.foot { margin-top: clamp(56px, 8vw, 96px); border-top: 1px solid var(--line); }
.foot-inner {
  max-width: var(--max); margin: 0 auto; padding: 28px clamp(16px, 4vw, 40px);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-2);
}
.foot-sep { color: var(--ink-3); }
.foot-right { margin-left: auto; color: var(--ink-3); }
.foot-right a { color: var(--ink-2); }

/* ---------- Mini bar ---------- */
.bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; align-items: center; gap: 14px;
  padding: 10px clamp(12px, 3vw, 28px);
  background: color-mix(in srgb, var(--paper-2) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
.bar.is-visible { transform: translateY(0); }
.bar-progress { position: absolute; left: 0; top: -1px; height: 2px; width: 0%; background: var(--terracotta); transition: width .25s linear; }
.bar-thumb { width: 46px; height: 46px; object-fit: cover; border-radius: 10px; }
.bar-text { min-width: 0; flex: 1; }
.bar-title { font-weight: 600; font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar-sub { font-size: 12.5px; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar-ctls { display: flex; align-items: center; gap: 2px; }
.bar .ctl { width: 40px; height: 40px; }
.bar .ctl-main { width: 46px; height: 46px; margin: 0 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav { display: none; }
  .stage { grid-template-columns: 1fr; gap: 24px; }
  .stage-frame { max-width: 560px; }
  .stage-info { text-align: left; }
}
@media (max-width: 560px) {
  .hero-art::before, .hero-art::after { width: 55%; opacity: 0.55; }
  .track { grid-template-columns: 30px 1fr auto; gap: 10px; }
  .hero-inner { padding-top: 40px; }
  .section-head-row .search { width: 100%; }
  .set { grid-template-columns: 88px 1fr; }
  .set img { width: 88px; height: 88px; }
  .foot-right { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bars i { animation: none; }
  .bar { transition: none; }
}

/* ---------- Hakkında ---------- */
.about-grid { display: grid; grid-template-columns: minmax(220px, 1fr) 2fr; gap: clamp(20px, 4vw, 56px); align-items: start; }
.about h2 { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 2.8vw, 32px); line-height: 1.15; letter-spacing: -0.01em; font-variation-settings: "SOFT" 60, "opsz" 72; }
.about-text p { margin: 0 0 14px; color: var(--ink-2); font-size: 16px; }
.about-text p:last-child { margin-bottom: 0; }

/* ---------- SSS ---------- */
.faq-list { border-top: 1px solid var(--line); max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 40px 16px 0; position: relative;
  font-weight: 600; font-size: 16px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 10px; height: 10px;
  border-right: 1.5px solid var(--terracotta); border-bottom: 1.5px solid var(--terracotta);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item p { margin: 0; padding: 0 0 18px; color: var(--ink-2); max-width: 680px; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- Koleksiyon kartları ---------- */
.col-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.col-card {
  display: flex; flex-direction: column; gap: 8px; text-decoration: none;
  padding: 20px 22px; background: var(--paper-2); border: 1px solid var(--line-2); border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.col-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--line); }
.col-name { font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.2; font-variation-settings: "SOFT" 60, "opsz" 40; }
.col-text { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.col-meta { margin-top: auto; padding-top: 6px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terracotta); }

/* ---------- Koleksiyon / parça sayfası başlığı ---------- */
.page-hero { max-width: var(--max); margin: 0 auto; padding: clamp(28px, 5vw, 56px) clamp(16px, 4vw, 40px) 28px; }
.page-hero h1 {
  margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.015em;
  font-size: clamp(34px, 5.5vw, 56px); font-variation-settings: "SOFT" 100, "opsz" 144; max-width: 820px;
}
.page-lead { margin: 14px 0 0; max-width: 640px; color: var(--ink-2); font-size: clamp(15.5px, 1.6vw, 17.5px); }
.page-hero .hero-actions.left { justify-content: flex-start; margin-top: 22px; }
.page-hero .hero-meta { margin-top: 16px; }
.page-hero .stage-chips { margin-top: 12px; }
.crumbs { margin-bottom: 18px; font-size: 13px; color: var(--ink-3); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "›"; margin-right: 6px; color: var(--ink-3); }
.crumbs a { text-decoration: none; color: var(--ink-2); }
.crumbs a:hover { color: var(--terracotta); }
.license-compact { text-align: left; max-width: var(--max); padding-top: clamp(40px, 6vw, 64px); }
.license-compact p { margin: 0; font-size: 14.5px; color: var(--ink-2); max-width: 760px; }
.license-compact a { color: var(--ink); text-underline-offset: 3px; }
@media (max-width: 560px) { .dock.is-docked { width: 104px; height: 58px; bottom: 74px; } }
