/* bronislawhonca.pl — wariant C „studio nocą” */
:root {
  --bg: #0F1620;
  --surface: #17212D;
  --surface-2: #141D28;
  --line: #243140;
  --line-soft: #1F2B38;
  --text: #E4E9EF;
  --text-2: #C4CDD7;
  --muted: #9DAAB8;
  --faint: #7F8D9C;
  --accent: #E3A54A;
  --accent-hover: #F2C27A;
  --on-accent: #1A1206;
  --meter-off: #34424F;
  --sans: 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --pad: clamp(16px, 6vw, 80px);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--sans); line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--accent); }
a:hover { color: var(--accent-hover); }
h1, h2, h3 { margin: 0; line-height: 1.15; }
p { margin: 0; }

.wrap { max-width: 1280px; margin: 0 auto; padding-inline: var(--pad); }
.mono { font-family: var(--mono); }

/* Nawigacja */
.nav { border-bottom: 1px solid var(--line-soft); position: sticky; top: 0; background: rgba(15,22,32,.92); backdrop-filter: blur(8px); z-index: 10; }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 17px; color: var(--text); text-decoration: none; }
.logo::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.nav ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; font-size: 15px; }
.nav ul a { color: var(--text); text-decoration: none; }
.nav ul a:hover { color: var(--accent); }

/* Hero */
.hero { padding-block: clamp(64px, 10vw, 112px) clamp(64px, 9vw, 104px); display: flex; flex-direction: column; gap: 28px; }
.meter { width: 336px; max-width: 100%; height: auto; }
.hero h1 { font-weight: 500; font-size: clamp(38px, 5.6vw, 64px); line-height: 1.08; letter-spacing: -0.02em; max-width: 980px; }
.lead { font-size: clamp(17px, 1.7vw, 20px); line-height: 1.55; color: var(--muted); max-width: 760px; }
.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; padding-top: 24px; }
.tile { display: flex; flex-direction: column; gap: 8px; padding: 22px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--text); transition: border-color .15s; }
.tile:hover { border-color: var(--accent); color: var(--text); }
.tile .num { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.tile .name { font-size: 22px; font-weight: 500; }
.tile .sub { font-size: 14px; color: var(--muted); }

/* Sekcje */
.section { padding-bottom: clamp(72px, 9vw, 104px); display: flex; flex-direction: column; gap: 28px; scroll-margin-top: 90px; }
.section-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 16px; }
.section-head .num { font-family: var(--mono); font-size: 14px; color: var(--accent); }
.section-head h2 { font-weight: 500; font-size: clamp(28px, 3vw, 36px); }
.section-head .hint { font-size: 16px; color: var(--muted); }
.section-intro { font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 800px; }

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

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; gap: 16px; padding: 28px; }
.card.lg { padding: 36px; gap: 20px; }
.card.media { padding: 0; overflow: hidden; gap: 0; }
.card.media .shot { aspect-ratio: 16 / 10; background: #1D2937; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 13px; color: var(--faint); }
.card.media .shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.card.media .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.card h3 { font-size: 20px; font-weight: 600; overflow-wrap: anywhere; }
.card.lg h3 { font-size: 30px; }
.card .desc { font-size: 15px; line-height: 1.55; color: var(--muted); }
.card .what { font-size: 18px; line-height: 1.5; }
.tags { font-family: var(--mono); font-size: 12px; color: var(--faint); }

.label { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.story { display: flex; flex-direction: column; gap: 8px; }
.story p { font-size: 16px; line-height: 1.6; color: var(--muted); }

.specs { display: grid; grid-template-columns: max-content 1fr; gap: 6px 24px; padding-block: 16px; border-block: 1px solid var(--line); font-family: var(--mono); font-size: 13px; margin: 0; }
.specs dt { color: var(--faint); }
.specs dd { margin: 0; }

.actions { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 10px; min-height: 46px; padding: 0 22px; border-radius: 6px; font-weight: 600; text-decoration: none; background: var(--accent); color: var(--on-accent); border: 1px solid var(--accent); }
.btn:hover { background: var(--accent-hover); color: var(--on-accent); }
.btn.ghost { background: transparent; color: var(--text); border-color: #3A4856; }
.btn.ghost:hover { border-color: var(--accent); color: var(--text); }
.btn.outline { background: transparent; color: var(--accent); }
.btn.outline:hover { background: rgba(227,165,74,.1); color: var(--accent-hover); }
.btn svg { width: 18px; height: 18px; }

.note { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 28px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.note strong { color: var(--text); }

/* Muzyka */
.tracks { display: flex; flex-direction: column; gap: 12px; }
.track { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 24px; display: flex; flex-direction: column; gap: 12px; }
.track .meta { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.track .title { font-size: 18px; font-weight: 500; }
.track .info { font-size: 14px; color: var(--muted); }
.track audio { width: 100%; height: 40px; }

/* O mnie + wsparcie */
.about { padding: 36px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.about h2, .support h2 { font-weight: 500; font-size: 30px; }
.about p { font-size: 18px; line-height: 1.6; color: var(--text-2); }
.support p { font-size: 17px; line-height: 1.6; color: var(--muted); }
.support .btn { align-self: flex-start; }

/* Stopka */
.footer { border-top: 1px solid var(--line-soft); font-family: var(--mono); font-size: 14px; color: var(--faint); }
.footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px 24px; padding-block: 40px; }

/* Responsywność */
@media (max-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .nav ul { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .card.lg { padding: 24px; }
  .card.lg h3 { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Utwór — opis i instrumentarium */
.track .title { font-size: 20px; font-weight: 500; margin: 0 0 2px; }
.track .desc { font-size: 16px; line-height: 1.6; color: var(--text-2); max-width: 760px; }
.gear summary { cursor: pointer; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); padding: 6px 0; }
.gear summary:hover { color: var(--accent-hover); }
.gear .specs { margin-top: 10px; border-bottom: 0; }
.gear .specs dd { line-height: 1.6; }

.eyebrow { font-family: var(--mono); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: -12px; }
