.logo-mark {
  position: relative;
  width: 58px;
  height: 52px;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
}

.logo-mark img {
  position: absolute;
  width: 142px;
  max-width: none;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -42%);
  filter: contrast(1.08);
}

@media (max-width: 560px) {
  .logo-mark {
    width: 49px;
    height: 44px;
  }

  .logo-mark img {
    width: 122px;
  }
}

/* Audiobook — działające zaproszenie lektora w estetyce strony głównej. */
.player-card h3 {
  max-width: 520px;
  color: #c9c9c5;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.player-card .player-tagline {
  max-width: 520px;
  margin-top: 14px;
  color: #7890a0;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.45;
}

.audio-item {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.audio-item-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #92918c;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.audio-item .player-ui {
  margin-top: 16px;
}

.player-ui audio {
  display: none;
}

.player-ui button {
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.player-ui button:hover,
.player-ui button:focus-visible {
  border-color: #9aadb8;
  background: rgba(120, 144, 160, .1);
  color: #9aadb8;
  transform: scale(1.03);
}

.player-ui button:focus-visible,
.player-ui .track:focus-visible {
  outline: 1px solid #9aadb8;
  outline-offset: 4px;
}

.player-ui .track {
  width: 100%;
  height: 2px;
  margin: 0;
  border: 0;
  border-radius: 0;
  appearance: none;
  cursor: pointer;
  background: linear-gradient(90deg, #7890a0 var(--audio-progress, 0%), #555 var(--audio-progress, 0%));
}

.player-ui .track::-webkit-slider-thumb {
  width: 10px;
  height: 10px;
  border: 1px solid #7890a0;
  border-radius: 50%;
  appearance: none;
  background: #121210;
}

.player-ui .track::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 1px solid #7890a0;
  border-radius: 50%;
  background: #121210;
}

.player-card.is-playing .wave {
  opacity: .42;
  animation: audio-pulse 1.4s ease-in-out infinite alternate;
}

@keyframes audio-pulse {
  from { transform: scaleY(.78); }
  to { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .player-card.is-playing .wave { animation: none; }
}

/* Gdański Nokturn — odrębna scena, wspólny język wizualny. */
.nokturn {
  grid-template-columns: minmax(430px, 720px) minmax(320px, 520px);
  gap: clamp(65px, 8vw, 130px);
  min-height: 1120px;
  background: #0d0d0c;
}

.nokturn .section-number {
  color: #806b4c;
  border-color: #806b4c;
}

.nokturn-copy {
  max-width: 720px;
}

.nokturn-copy .eyebrow {
  color: #7890a0;
  font-size: 9px;
  letter-spacing: .3em;
}

.nokturn-copy h2 {
  margin-bottom: 38px;
  color: #c9c9c5;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .96;
}

.nokturn-copy h2 em {
  color: #7890a0;
  font-style: normal;
  font-weight: 500;
}

.nokturn-copy > p:not(.eyebrow),
.nokturn-copy .intro {
  max-width: 680px;
  color: #969896;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.78;
}

.nokturn-copy .intro {
  color: #b9bab6;
  font-size: 19px;
  line-height: 1.65;
}

.nokturn-questions {
  margin: 28px 0;
  padding: 22px 0 22px 25px;
  border-left: 1px solid rgba(120, 144, 160, .5);
  color: #b0afaa !important;
  font-family: var(--serif) !important;
  font-size: 18px !important;
  font-style: italic;
  line-height: 1.65 !important;
}

.nokturn-signature {
  margin-top: 34px !important;
  color: #7890a0 !important;
  font-family: var(--serif) !important;
  font-size: 21px !important;
  font-style: italic;
  line-height: 1.5 !important;
}

.nokturn .status-line {
  margin-top: 34px;
  color: #777a78;
  font-size: 9px;
  letter-spacing: .17em;
}

.nokturn .status-line span {
  background: #806b4c;
  box-shadow: 0 0 0 5px rgba(128, 107, 76, .13);
}

.nokturn-art {
  position: relative;
  min-height: 760px;
  border: 0;
  background: #0d0d0c;
  box-shadow: none;
  overflow: hidden;
}

.nokturn-art::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: radial-gradient(ellipse at 62% 52%, transparent 0%, rgba(13, 13, 12, .12) 34%, rgba(13, 13, 12, .86) 100%), linear-gradient(90deg, rgba(13, 13, 12, .76) 0%, transparent 35%, rgba(13, 13, 12, .28) 100%), linear-gradient(180deg, rgba(13, 13, 12, .58) 0%, transparent 28%, transparent 58%, rgba(13, 13, 12, .88) 100%);
  pointer-events: none;
}

.nokturn-art::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 101% 24%, rgba(13, 13, 12, .9) 0%, rgba(13, 13, 12, .34) 20%, transparent 43%), radial-gradient(ellipse at 108% 64%, rgba(13, 13, 12, .92) 0%, rgba(13, 13, 12, .34) 21%, transparent 42%), radial-gradient(ellipse at 112% 98%, rgba(13, 13, 12, .78) 0%, transparent 38%), linear-gradient(90deg, transparent 77%, rgba(13, 13, 12, .1) 84%, rgba(13, 13, 12, .58) 95%, #0d0d0c 100%);
}

.nokturn-art img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
  opacity: .78;
  filter: saturate(.38) contrast(.96) brightness(.58) blur(.25px);
}

@media (max-width: 900px) {
  .nokturn {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nokturn-art {
    min-height: 650px;
    max-width: 520px;
  }

  .nokturn-art img {
    min-height: 650px;
  }
}

@media (max-width: 560px) {
  .nokturn-art,
  .nokturn-art img {
    min-height: 540px;
  }
}

/* Mroczny Depozyt — okładka i treść z aktualnego projektu. */
.book-section {
  grid-template-columns: minmax(260px, 410px) minmax(420px, 720px);
  grid-template-areas:
    "cover copy"
    "reviews copy";
  gap: clamp(70px, 9vw, 150px);
  row-gap: 54px;
  align-items: start;
  min-height: 1050px;
  background: #11110f;
}

.book-section .section-number {
  color: #806b4c;
  border-color: #806b4c;
}

.book-cover {
  grid-area: cover;
  max-width: 410px;
}

.book-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transform: rotateY(3deg);
  border: 1px solid rgba(201, 201, 197, .09);
  box-shadow: 24px 34px 80px rgba(0, 0, 0, .66);
}

.book-copy {
  grid-area: copy;
  max-width: 720px;
}

.review-quotes {
  grid-area: reviews;
  max-width: 410px;
  padding-top: 28px;
  border-top: 1px solid rgba(120, 144, 160, .28);
}

.review-heading {
  margin: 0 0 26px;
  color: #7890a0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  line-height: 1.45;
  text-transform: uppercase;
}

.review-quotes figure {
  margin: 0;
  padding: 0 0 24px;
}

.review-quotes figure + figure {
  padding-top: 24px;
  border-top: 1px solid rgba(201, 201, 197, .09);
}

.review-quotes blockquote {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  color: #b2b1ad;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.review-quotes figcaption a {
  color: #7890a0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
  transition: color .2s ease;
}

.review-quotes figcaption a:hover {
  color: #9aadb8;
}

.review-quotes figcaption span {
  margin-left: 5px;
}

.book-copy .eyebrow {
  color: #7890a0;
  font-size: 9px;
  letter-spacing: .3em;
}

.book-copy h2 {
  color: #c9c9c5;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .96;
}

.book-copy h2 em {
  font-family: var(--serif);
  color: #7890a0;
  font-weight: 500;
  font-style: normal;
  letter-spacing: inherit;
}

.book-copy .tagline {
  margin: 22px 0 35px;
  color: #7890a0;
  font-size: 20px;
}

.cover-description {
  max-width: 660px;
  padding-top: 30px;
  border-top: 1px solid rgba(120, 144, 160, .22);
}

.cover-description h3 {
  margin: 0 0 14px;
  color: #bdbeba;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.cover-description p {
  max-width: 630px !important;
  color: #969896 !important;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.cover-description blockquote {
  margin: 30px 0 0;
  padding: 3px 0 3px 25px;
  border-left-color: rgba(120, 144, 160, .55);
  color: #aaa9a4;
  font-size: 16px;
  line-height: 1.7;
}

.book-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 201, 197, .1);
}

.book-path {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.book-path p {
  min-height: 76px;
  margin: 0 0 20px;
  color: #a4a5a2 !important;
  font-size: 14px;
  line-height: 1.7;
}

.quiet-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(120, 144, 160, .52);
  color: #9aadb8;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: .25s ease;
}

.quiet-button:hover {
  border-color: #7890a0;
  background: rgba(120, 144, 160, .08);
  color: #9aadb8;
}

.quiet-button span {
  font-size: 14px;
}

@media (max-width: 900px) {
  .book-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "cover"
      "copy"
      "reviews";
    row-gap: 52px;
    min-height: auto;
  }

  .review-quotes {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .book-paths {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .book-path p {
    min-height: 0;
  }
}

/* Bio — ten sam luksusowy, wydawniczy język co pierwszy ekran. */
.bio {
  grid-template-columns: minmax(280px, 470px) minmax(340px, 650px);
  gap: clamp(70px, 9vw, 150px);
  min-height: 900px;
  background: #0d0d0c;
  color: #c9c9c5;
}

.bio .section-number {
  color: #806b4c;
  border-color: #806b4c;
}

.bio .portrait-wrap {
  max-width: 470px;
}

.bio .portrait-wrap::before {
  inset: -22px 22px 22px -22px;
  border-color: rgba(120, 144, 160, .38);
}

.bio .portrait-wrap::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(13, 13, 12, .48) 100%);
  pointer-events: none;
}

.bio .portrait-wrap img {
  height: 660px;
  object-position: 50% 22%;
  filter: saturate(.52) contrast(1.05) brightness(.82);
}

.bio-copy {
  max-width: 650px;
}

.bio-copy .eyebrow {
  color: #7890a0;
  font-size: 9px;
  letter-spacing: .3em;
}

.bio h2 {
  margin-bottom: 38px;
  color: #c9c9c5;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.bio-copy p,
.bio-copy .intro {
  max-width: 610px;
  color: #969896;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
}

.bio-copy .intro {
  color: #b9bab6;
  font-size: 20px;
  line-height: 1.68;
}

.bio-signature {
  position: relative;
  margin-top: 42px;
  padding: 27px 0 0 72px;
  border-top: 1px solid rgba(120, 144, 160, .28);
  color: #7890a0 !important;
  font-family: var(--serif) !important;
  font-size: clamp(20px, 2vw, 27px) !important;
  font-style: italic;
  line-height: 1.45 !important;
}

.bio-signature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 45px;
  width: 48px;
  height: 1px;
  background: #806b4c;
}

@media (max-width: 900px) {
  .bio {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bio .portrait-wrap {
    max-width: 430px;
  }
}

@media (max-width: 560px) {
  .bio .portrait-wrap img {
    height: 520px;
  }

  .bio-copy .intro {
    font-size: 18px;
  }

  .bio-signature {
    padding-left: 48px;
  }

  .bio-signature::before {
    width: 32px;
  }
}

.logo-mark,
.hero-copy,
.site-header nav {
  transition: all .3s ease;
}

:root {
  --serif: "Bodoni Moda", Didot, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --gold: #7890a0;
}

.site-header {
  height: 96px;
  background: linear-gradient(180deg, rgba(5, 5, 5, .84), transparent);
}

.site-header .brand {
  gap: 11px;
}

.site-header .brand strong {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .035em;
}

.site-header .brand small {
  color: #818383;
  letter-spacing: .2em;
  font-size: 7px;
}

.site-header nav {
  gap: 34px;
  font-size: 10px;
  letter-spacing: .17em;
}

.logo-mark {
  width: 51px;
  height: 47px;
  opacity: .82;
}

.logo-mark img {
  width: 126px;
}

.hero-visual {
  background-image: url('/assets/gdansk-mariacka-night.png');
  background-position: center center;
  filter: saturate(.48) contrast(1.08) brightness(.55);
}

.hero-shade {
  background: radial-gradient(circle at 76% 56%, transparent 0%, rgba(4, 5, 5, .14) 29%, rgba(3, 3, 3, .72) 100%), linear-gradient(90deg, rgba(5, 5, 5, .98) 0%, rgba(5, 5, 5, .88) 36%, rgba(5, 5, 5, .38) 72%, rgba(5, 5, 5, .5) 100%), linear-gradient(0deg, #0d0d0c 0%, transparent 35%, rgba(2, 2, 2, .42) 100%);
}

.hero-copy {
  max-width: 820px;
  padding-left: clamp(0px, 2vw, 30px);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(54px, 6.4vw, 96px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
  color: #c9c9c5;
  text-shadow: 0 3px 24px rgba(0, 0, 0, .56);
  margin-bottom: 24px;
}

.hero-thesis {
  position: relative;
  margin: 0 0 31px;
  padding-left: 72px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  color: #9aadb8;
  letter-spacing: -.01em;
}

.hero-thesis::before {
  content: "";
  position: absolute;
  left: 0;
  top: 52%;
  width: 50px;
  height: 1px;
  background: #7890a0;
}

.hero .lead {
  max-width: 560px;
  color: #939695;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 300;
  letter-spacing: .01em;
}

.hero .eyebrow {
  max-width: 720px;
  margin-bottom: 29px;
  color: #7890a0;
  font-size: 9px;
  letter-spacing: .28em;
  font-weight: 500;
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
    letter-spacing: -.04em;
  }

  .hero-thesis {
    padding-left: 48px;
    font-size: 20px;
  }

  .hero-thesis::before {
    width: 34px;
  }
}

/* Jednolity system typograficzny — strona główna jest wzorcem. */
.hero h1,
.section h2,
.fragment h2 {
  color: #c9c9c5;
  font-family: var(--serif);
  font-size: clamp(54px, 6.4vw, 96px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.audio-section .audio-copy h2 {
  color: #484a47;
}

.section h2 em,
.fragment h2 em {
  color: #7890a0;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
}

.eyebrow,
.bio-copy .eyebrow,
.book-copy .eyebrow,
.nokturn-copy .eyebrow {
  color: #7890a0;
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .28em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-thesis,
.book-copy .tagline,
.bio-signature,
.nokturn-signature,
.player-card .player-tagline {
  color: #7890a0 !important;
  font-family: var(--serif) !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.45 !important;
}

.bio-copy p,
.bio-copy .intro,
.book-copy p,
.cover-description p,
.cover-description blockquote,
.nokturn-copy > p:not(.eyebrow),
.nokturn-copy .intro,
.audio-copy p:not(.eyebrow),
.fragment-inner > p:not(.eyebrow) {
  font-family: var(--sans) !important;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.8 !important;
}

.bio-copy .intro,
.nokturn-copy .intro {
  color: #b9bab6;
}

.bio-copy p.bio-signature,
.book-copy p.tagline,
.nokturn-copy p.nokturn-signature,
.player-card p.player-tagline {
  color: #7890a0 !important;
  font-family: var(--serif) !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.45 !important;
}

.cover-description h3,
.player-card h3,
.narrator strong {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.cover-description h3,
.narrator strong {
  font-size: 24px;
}

.player-card h3 {
  font-size: clamp(30px, 3vw, 38px);
}

.nokturn-questions {
  color: #b0afaa !important;
  font-family: var(--sans) !important;
  font-size: 16px !important;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8 !important;
}

.nokturn-questions p {
  margin: 0;
}

.section-number,
.status-line,
.narrator span,
.audio-item-label,
.quiet-button,
.form-note,
.consent {
  font-family: var(--sans);
}

@media (max-width: 560px) {
  .hero h1,
  .section h2,
  .fragment h2 {
    font-size: clamp(46px, 13vw, 66px);
  }
}

/* Strona główna — chłodny, redakcyjny noir. */
:root {
  --home-blue: #687f8c;
  --home-blue-light: #879ba5;
  --home-title: #d0d3d4;
  --home-body: #b2b9bd;
}

.site-header {
  background: linear-gradient(180deg, rgba(10, 13, 15, .9), rgba(10, 13, 15, 0));
}

.site-header.scrolled {
  background: rgba(14, 17, 19, .94);
  border-bottom-color: rgba(120, 144, 160, .18);
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--home-blue-light);
}

.site-header .brand small {
  color: #7f898f;
}

.hero {
  align-items: center;
  padding-top: 150px;
  padding-bottom: 90px;
  background: #101214;
}

.hero-visual {
  background-position: center 53%;
  filter: saturate(.58) contrast(1.03) brightness(.72);
  transform: scale(1.005);
}

.hero-shade {
  background:
    radial-gradient(circle at 73% 54%, transparent 0%, rgba(9, 12, 14, .08) 34%, rgba(9, 12, 14, .58) 100%),
    linear-gradient(90deg, rgba(10, 13, 15, .91) 0%, rgba(10, 13, 15, .73) 38%, rgba(10, 13, 15, .16) 73%, rgba(10, 13, 15, .3) 100%),
    linear-gradient(0deg, rgba(10, 13, 15, .86) 0%, transparent 27%, rgba(6, 8, 9, .22) 100%);
}

.hero-copy {
  isolation: isolate;
  position: relative;
  max-width: 700px;
  padding: clamp(28px, 4vw, 54px) clamp(24px, 4vw, 52px);
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 14, 16, .82) 0%, rgba(10, 14, 16, .57) 72%, rgba(10, 14, 16, 0) 100%);
  border-left: 1px solid rgba(104, 127, 140, .7);
  box-shadow: -28px 26px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(1.5px);
}

.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 20px;
  bottom: 18px;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, rgba(104, 127, 140, .72), transparent);
}

.hero .eyebrow {
  max-width: 690px;
  margin-bottom: 25px;
  color: #91a2aa;
  font-size: clamp(19px, 1.65vw, 24px);
  font-weight: 500;
  letter-spacing: .045em;
  line-height: 1.45;
  text-transform: none;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: #d5d6d4;
  font-size: clamp(50px, 5.15vw, 78px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.03;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

.hero-thesis {
  margin-bottom: 27px;
  padding-left: 58px;
  color: #8da0a9 !important;
  font-size: clamp(19px, 1.65vw, 24px) !important;
  font-weight: 500;
}

.hero-thesis::before {
  width: 40px;
  background: var(--home-blue);
}

.hero .lead {
  max-width: 540px;
  color: #b9bdbc !important;
  font-size: 17px !important;
  font-weight: 400;
  line-height: 1.7 !important;
}

.scroll-cue {
  color: #889297;
}

.scroll-cue span {
  background: var(--home-blue);
}

@media (max-width: 560px) {
  .hero {
    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 90px;
  }

  .hero-visual {
    background-position: 62% center;
    filter: saturate(.55) contrast(1.02) brightness(.68);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(10, 13, 15, .96) 0%, rgba(10, 13, 15, .7) 54%, rgba(10, 13, 15, .2) 100%),
      linear-gradient(90deg, rgba(10, 13, 15, .7), rgba(10, 13, 15, .12));
  }

  .hero h1 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .hero-copy {
    padding: 26px 20px 28px;
  }

  .hero-copy::before {
    background: linear-gradient(180deg, rgba(10, 14, 16, .68), rgba(10, 14, 16, .9));
    border-left-color: rgba(104, 127, 140, .55);
  }

  .hero-thesis {
    padding-left: 42px;
  }

  .hero-thesis::before {
    width: 28px;
  }
}

/* Czytelna hierarchia tekstu: każda warstwa ma własny rytm i nie konkuruje z następną. */
.bio-copy,
.book-copy,
.nokturn-copy,
.audio-copy,
.buy-heading,
.fragment-inner {
  position: relative;
  isolation: isolate;
}

.bio-copy > .eyebrow,
.book-copy > .eyebrow,
.nokturn-copy > .eyebrow,
.audio-copy > .eyebrow,
.buy-heading > .eyebrow,
.fragment-inner > .eyebrow {
  margin-bottom: 22px;
}

.bio-copy > h2,
.book-copy > h2,
.nokturn-copy > h2,
.audio-copy > h2,
.buy-heading > h2,
.fragment-inner > h2 {
  margin-top: 0;
  margin-bottom: 30px;
  text-wrap: balance;
}

.bio-copy > p,
.book-copy > p,
.nokturn-copy > p,
.audio-copy > p,
.buy-heading > p,
.fragment-inner > p {
  text-wrap: pretty;
}

.cover-description,
.nokturn-questions,
.reader-list,
.fragment form {
  position: relative;
  z-index: 1;
}

/* Wybór formatu — sprzedaż bez handlowego tonu. */
.buy-section {
  display: block;
  min-height: auto;
  background: #10100e;
  color: #c9c9c5;
}

.buy-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.buy-heading > p:not(.eyebrow) {
  max-width: 590px;
  color: #969896;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

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

.format-card {
  display: flex;
  min-height: 610px;
  padding: clamp(28px, 3vw, 42px);
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(120, 144, 160, .25);
  background: #151513;
}

.format-kicker {
  min-height: 36px;
  margin: 0 0 18px;
  color: #7890a0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.format-card h3,
.reader-list h3 {
  margin: 0;
  color: #c9c9c5;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.format-card h3 {
  font-size: clamp(34px, 3.2vw, 48px);
}

.format-card > p:not(.format-kicker) {
  min-height: 88px;
  margin: 18px 0 24px;
  color: #969896;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.qr-link,
.qr-placeholder {
  width: 190px;
  height: 190px;
  margin: 0 0 30px;
}

.qr-link {
  display: block;
  padding: 9px;
  background: #f2efe7;
  transition: transform .22s ease, box-shadow .22s ease;
}

.qr-link:hover,
.qr-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .34);
}

.qr-link img {
  width: 100%;
  height: 100%;
}

.qr-placeholder {
  display: grid;
  place-content: center;
  border: 1px solid rgba(120, 144, 160, .46);
  background: linear-gradient(145deg, rgba(120, 144, 160, .08), transparent);
  text-align: center;
}

.qr-placeholder span,
.qr-placeholder strong {
  display: block;
}

.qr-placeholder span {
  color: #858783;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.qr-placeholder strong {
  margin-top: 8px;
  color: #9aadb8;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.format-card .quiet-button {
  margin-top: auto;
}

.reader-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  margin-top: 30px;
  padding: clamp(32px, 4vw, 52px);
  align-items: center;
  border: 1px solid rgba(201, 201, 197, .12);
  background: #0c0c0b;
}

.reader-list h3 {
  font-size: clamp(32px, 3.4vw, 48px);
}

.reader-list > div > p:not(.eyebrow) {
  max-width: 670px;
  margin: 14px 0 0;
  color: #969896;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

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

  .format-card {
    min-height: 0;
  }

  .format-card > p:not(.format-kicker) {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .reader-list {
    grid-template-columns: 1fr;
  }

  .reader-list .quiet-button {
    justify-self: start;
  }
}

/* Formularz czytelników — natywna integracja Brevo w stylistyce strony. */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sib-form-message-panel { display: none; }

.brevo-form {
  width: min(100%, 760px);
  margin: 0 auto;
}

.brevo-embed,
.brevo-embed .sib-form-container,
.brevo-embed #sib-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: inherit;
}

.brevo-embed .checkbox { display: none; }

.brevo-form .form-row {
  align-items: stretch;
}

.brevo-form .form__entry,
.brevo-form .entry__field {
  width: 100%;
}

.brevo-form .entry__field input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(154, 173, 184, .4);
  border-right: 0;
  border-radius: 0;
  background: rgba(11, 15, 17, .86);
  color: #eef1f2;
  padding: 0 20px;
  font: 400 16px/1.4 var(--sans);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.brevo-form .entry__field input::placeholder { color: #7f898e; }

.brevo-form .entry__field input:focus {
  border-color: #9aadb8;
  box-shadow: inset 0 0 0 1px rgba(154, 173, 184, .22);
}

.brevo-form .button {
  min-height: 58px;
  border: 1px solid #7890a0;
  border-radius: 0;
  background: #7890a0;
  color: #0d1113;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease;
}

.brevo-form .sib-hide-loader-icon {
  display: none;
  width: 16px;
  height: 16px;
  margin-right: 9px;
  fill: currentColor;
}

.brevo-form .button:hover,
.brevo-form .button:focus-visible {
  border-color: #9aadb8;
  background: #9aadb8;
}

.brevo-form .consent {
  position: static !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  margin-left: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  align-items: flex-start;
  margin: 18px 0 0;
  color: #aeb4b6;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
}

.brevo-form .consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 3px 2px 0 0;
  accent-color: #7890a0;
}

.brevo-form .consent a,
.brevo-form .form-note a {
  color: #cfd7db;
  text-decoration: underline;
  text-decoration-color: rgba(154, 173, 184, .55);
  text-underline-offset: 3px;
}

.brevo-form .entry__error {
  display: block;
  margin: 7px 0 0;
  color: #d4a4a4;
  font: 400 12px/1.5 var(--sans);
  text-align: left;
}

.brevo-form .form-note {
  margin: 16px 0 0 !important;
  color: #747a7d !important;
  font-size: 11px !important;
  font-weight: 300;
  line-height: 1.6 !important;
  text-align: left;
}

.input--hidden { position: absolute; left: -5000px; }

.form-message {
  width: min(100%, 760px);
  margin: 0 auto 22px;
  padding: 16px 18px;
  border-left: 2px solid #7890a0;
  background: rgba(120, 144, 160, .1);
  color: #d7dcde;
  font-size: 14px;
  text-align: left;
}

.form-message-error {
  border-left-color: #a76f6f;
  background: rgba(167, 111, 111, .1);
}

@media (max-width: 650px) {
  .brevo-form .form-row { grid-template-columns: 1fr; }
  .brevo-form .entry__field input { border-right: 1px solid rgba(154, 173, 184, .4); }
  .brevo-form .button { width: 100%; }
}

/* Strony informacyjne i odbiór e-booka. */
.utility-page {
  min-height: 100vh;
  background: #101416;
  color: #d7dbdd;
}

.utility-header {
  min-height: 84px;
  padding: 16px clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(154, 173, 184, .14);
}

.utility-main {
  width: min(100% - 44px, 900px);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) 0;
}

.utility-main h1 {
  margin: 0 0 28px;
  color: #d7dbdd;
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}

.utility-main .utility-lead {
  max-width: 690px;
  margin: 0 0 34px;
  color: #aeb8bd;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}

.download-action {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid #7890a0;
  color: #dfe5e8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.download-action:hover,
.download-action:focus-visible {
  background: #7890a0;
  color: #0d1113;
}

.utility-note-prominent {
  max-width: 690px;
  margin: 0 0 34px;
  color: #8da7b6;
  font-size: 16px;
  line-height: 1.7;
}

.utility-return {
  display: inline-flex;
}

.utility-note {
  margin-top: 24px;
  color: #737c80;
  font-size: 12px;
}

.privacy-content {
  max-width: 780px;
  color: #abb2b5;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.privacy-content h2 {
  margin: 48px 0 12px;
  color: #d7dbdd;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.privacy-content a { color: #9aadb8; text-decoration: underline; text-underline-offset: 3px; }
.privacy-content ul { padding-left: 22px; }

.footer-links { display: flex; align-items: center; gap: 24px; }
.footer-links a:last-child { color: var(--gold); }

@media (max-width: 760px) {
  .footer-links { flex-direction: column; gap: 10px; }
}

/* Wybór wersji — trzy równorzędne, spokojne moduły. */
.buy-section {
  background: #111416;
}

.buy-heading {
  margin-bottom: 52px;
}

.format-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.format-card {
  min-height: 560px;
  border-color: rgba(120, 144, 160, .26);
  background: rgba(20, 25, 28, .78);
}

.format-card h3 {
  color: #d7dbdd;
}

.format-card > p:not(.format-kicker) {
  color: #aeb8bd !important;
}

.qr-link {
  width: 174px;
  height: 174px;
  padding: 10px;
  border: 1px solid rgba(120, 144, 160, .22);
  background: #f2f3f1;
}

.format-card .quiet-button {
  color: #edf0f1 !important;
}

.reader-list {
  margin-top: 26px;
  border-color: rgba(120, 144, 160, .2);
  background: #0d1012;
}

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

  .format-card {
    min-height: 0;
  }
}

/* Audiobook — to samo chłodne, ciemne tło co zaakceptowana sekcja Bio. */
.audio-section {
  background:
    radial-gradient(circle at 24% 48%, rgba(120, 144, 160, .08), transparent 34%),
    #151a1d;
  color: #c8ced1;
}

.audio-section .section-number {
  color: #7890a0 !important;
  border-bottom-color: rgba(120, 144, 160, .5) !important;
}

.audio-section .audio-copy h2 {
  color: #8fa7b5;
}

.audio-copy p:not(.eyebrow) {
  color: #aeb8bd !important;
}

.audio-section .narrator {
  border-top-color: rgba(120, 144, 160, .28);
}

.audio-section .narrator span {
  color: #7890a0;
}

.audio-section .narrator strong {
  color: #d0d5d7;
}

/* Finalna blokada typografii: jeden system dla całej strony. */
:root {
  --type-title-dark: #c9c9c5;
  --type-title-light: #484a47;
  --type-body-dark: #969896;
  --type-body-light: #4f4b44;
  --type-accent: #7890a0;
  --type-label: #7890a0;
}

body {
  font-family: var(--sans);
}

.hero h1,
.section h2,
.fragment h2 {
  color: var(--type-title-dark);
  font-family: var(--serif);
  font-size: clamp(54px, 6.4vw, 96px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.audio-section .audio-copy h2 {
  color: var(--type-title-light);
}

.cover-description h3,
.player-card h3,
.narrator strong,
.format-card h3,
.reader-list h3 {
  color: var(--type-title-dark);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 38px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.hero-thesis,
.bio-copy p.bio-signature,
.book-copy p.tagline,
.nokturn-copy p.nokturn-signature,
.player-card p.player-tagline {
  color: var(--type-accent) !important;
  font-family: var(--serif) !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.45 !important;
}

.hero .lead,
.bio-copy p:not(.eyebrow):not(.bio-signature),
.book-copy p:not(.eyebrow):not(.tagline),
.cover-description p,
.cover-description blockquote,
.book-path p,
.nokturn-copy > p:not(.eyebrow):not(.nokturn-signature),
.buy-heading > p:not(.eyebrow),
.format-card > p:not(.format-kicker),
.reader-list > div > p:not(.eyebrow),
.fragment-inner > p:not(.eyebrow) {
  color: var(--type-body-dark) !important;
  font-family: var(--sans) !important;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.8 !important;
}

.audio-copy p:not(.eyebrow) {
  color: var(--home-body) !important;
  font-family: var(--sans) !important;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.8 !important;
}

.eyebrow,
.bio-copy .eyebrow,
.book-copy .eyebrow,
.nokturn-copy .eyebrow,
.format-kicker {
  color: var(--type-label);
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .28em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section-number,
.status-line,
.narrator span,
.audio-item-label,
.quiet-button,
.form-note,
.consent,
.site-header nav,
.site-header .brand small {
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .hero h1,
  .section h2,
  .fragment h2 {
    font-size: clamp(46px, 13vw, 66px);
  }
}

/* Finalna paleta: grafit i zgaszony błękit, bez złotych akcentów. */
:root {
  --steel-blue: #7890a0;
  --steel-blue-light: #9aadb8;
  --gold: var(--steel-blue);
  --type-accent: var(--steel-blue-light);
  --type-label: var(--steel-blue);
}

.hero .eyebrow {
  width: min(100%, 690px);
  max-width: none;
  color: var(--steel-blue-light) !important;
  font-size: clamp(19px, 1.65vw, 24px);
  letter-spacing: .045em;
  text-transform: none;
}

.hero-thesis {
  width: min(100%, 690px);
  padding-left: 143px;
  color: var(--steel-blue-light) !important;
  font-size: clamp(19px, 1.65vw, 24px) !important;
  letter-spacing: .045em;
}

.hero-thesis::before {
  width: 123px;
  background: var(--steel-blue) !important;
}

.section h2 em,
.fragment h2 em,
.book-copy .tagline,
.bio-signature,
.nokturn-signature,
.player-card .player-tagline,
.player-label,
.text-link,
.review-quotes figcaption a,
.qr-placeholder strong,
footer > a:last-child {
  color: var(--steel-blue-light) !important;
}

.eyebrow,
.bio-copy .eyebrow,
.book-copy .eyebrow,
.nokturn-copy .eyebrow,
.format-kicker,
.section-number {
  color: var(--steel-blue) !important;
}

.section-number,
.quiet-button,
.player-ui button,
.portrait-wrap::before {
  border-color: rgba(120, 144, 160, .52) !important;
}

.quiet-button {
  color: var(--steel-blue-light) !important;
}

.quiet-button:hover,
.quiet-button:focus-visible {
  border-color: var(--steel-blue) !important;
  background: rgba(120, 144, 160, .1) !important;
  color: #b5c3cb !important;
}

/* Gdański Nokturn — wersja uporządkowana, jaśniejsza i zgodna z paletą strony. */
.nokturn {
  grid-template-columns: minmax(430px, 680px) minmax(390px, 570px);
  align-items: center;
  gap: clamp(58px, 7vw, 112px);
  min-height: 1040px;
  background:
    radial-gradient(circle at 78% 48%, rgba(120, 144, 160, .075), transparent 31%),
    #111311;
}

.nokturn .section-number {
  color: var(--steel-blue) !important;
  border-color: rgba(120, 144, 160, .52) !important;
}

.nokturn-copy {
  max-width: 680px;
}

.nokturn-copy h2,
.nokturn-copy h2 em {
  color: #d0d0cc !important;
}

.nokturn-copy h2 {
  margin-bottom: 34px;
}

.nokturn-copy > p:not(.eyebrow):not(.nokturn-signature),
.nokturn-copy .intro {
  max-width: 660px;
  color: #aaaead !important;
}

.nokturn-copy .intro {
  color: #c3c5c1 !important;
}

.nokturn-questions {
  margin: 25px 0 27px;
  padding: 17px 0 17px 24px;
  border-left: 1px solid rgba(120, 144, 160, .65);
  color: #b7c2c8 !important;
  background: linear-gradient(90deg, rgba(120, 144, 160, .07), transparent 72%);
}

.nokturn-copy p.nokturn-signature {
  margin-top: 30px !important;
  color: var(--steel-blue-light) !important;
}

.nokturn .status-line {
  margin-top: 28px;
  color: #8f9697;
}

.nokturn .status-line span {
  background: var(--steel-blue);
  box-shadow: 0 0 0 5px rgba(120, 144, 160, .13);
}

.nokturn-art {
  min-height: 760px;
  background: #111311;
  overflow: hidden;
}

.nokturn-art img {
  min-height: 760px;
  object-position: 56% center;
  opacity: .96;
  filter: saturate(.56) contrast(1.02) brightness(.79);
}

.nokturn-art::before {
  background:
    radial-gradient(ellipse at 63% 58%, transparent 0 38%, rgba(17, 19, 17, .16) 58%, rgba(17, 19, 17, .7) 100%),
    linear-gradient(90deg, #111311 0%, rgba(17, 19, 17, .56) 8%, transparent 28%, transparent 84%, rgba(17, 19, 17, .38) 94%, #111311 100%),
    linear-gradient(180deg, rgba(17, 19, 17, .42) 0%, transparent 20%, transparent 78%, rgba(17, 19, 17, .72) 100%);
}

.nokturn-art::after {
  background:
    radial-gradient(ellipse at 76% 74%, rgba(154, 173, 184, .08), transparent 24%),
    linear-gradient(90deg, transparent 78%, rgba(17, 19, 17, .08) 88%, #111311 100%);
}

@media (max-width: 900px) {
  .nokturn {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: auto;
  }

  .nokturn-art {
    max-width: 570px;
    min-height: 650px;
  }

  .nokturn-art img {
    min-height: 650px;
  }
}

@media (max-width: 560px) {
  .nokturn-art,
  .nokturn-art img {
    min-height: 540px;
  }
}

.status-line span,
.track i {
  background: var(--steel-blue) !important;
}

.status-line span {
  box-shadow: 0 0 0 6px rgba(120, 144, 160, .1) !important;
}

.audio-seek {
  background: linear-gradient(90deg, var(--steel-blue) var(--audio-progress, 0%), #555 var(--audio-progress, 0%)) !important;
}

.audio-seek::-webkit-slider-thumb,
.audio-seek::-moz-range-thumb {
  border-color: var(--steel-blue) !important;
}

.wave {
  background: repeating-linear-gradient(90deg, var(--steel-blue) 0 2px, transparent 2px 7px) !important;
}

@media (max-width: 700px) {
  .hero-thesis {
    padding-left: 42px;
  }

  .hero-thesis::before {
    width: 28px;
  }
}

/* Bio — jasna, chłodna karta redakcyjna. */
.bio {
  grid-template-columns: minmax(280px, 470px) minmax(340px, 610px);
  gap: clamp(64px, 8vw, 126px);
  min-height: 820px;
  padding-top: 142px;
  padding-bottom: 126px;
  background: #d8dcdd;
  color: #20262a;
}

.bio .section-number {
  color: #687f8d !important;
  border-bottom-color: rgba(104, 127, 141, .55) !important;
}

.portrait-wrap {
  width: 100%;
  max-width: 470px;
  margin-left: 18px;
}

.portrait-wrap::before {
  inset: -16px 20px 20px -16px;
  border-color: rgba(104, 127, 141, .62) !important;
}

.portrait-wrap img {
  height: min(66vw, 610px);
  min-height: 520px;
  object-position: 50% 20%;
  filter: grayscale(.76) saturate(.38) contrast(1.04) brightness(.94);
  box-shadow: 0 24px 54px rgba(31, 39, 44, .18);
}

.bio-copy {
  max-width: 610px;
  padding-top: 4px;
}

.bio-copy .eyebrow {
  margin-bottom: 22px;
  color: #687f8d !important;
  font-size: 11px;
  letter-spacing: .24em;
}

.bio h2 {
  margin-bottom: 38px;
  color: #262c30;
  font-size: clamp(50px, 5.3vw, 76px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.bio-copy p:not(.eyebrow):not(.bio-signature),
.bio-copy .intro {
  max-width: 590px;
  margin: 0 0 19px;
  color: #40494e !important;
  font-size: 17px !important;
  font-weight: 400;
  line-height: 1.78 !important;
}

.bio-copy .intro {
  color: #293237 !important;
  font-size: 19px !important;
  font-weight: 500;
}

.bio-copy p.bio-signature {
  position: relative;
  max-width: 575px;
  margin: 38px 0 0;
  padding: 27px 0 0 58px;
  border-top: 1px solid rgba(104, 127, 141, .38);
  color: #607b8b !important;
  font-size: clamp(20px, 1.75vw, 25px) !important;
  line-height: 1.48 !important;
}

.bio-copy p.bio-signature::before {
  width: 38px;
  background: #7890a0;
}

@media (max-width: 900px) {
  .bio {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-top: 112px;
  }

  .portrait-wrap {
    max-width: 440px;
    margin-left: 16px;
  }

  .portrait-wrap img {
    height: 560px;
    min-height: 0;
  }

  .bio-copy {
    max-width: 650px;
  }
}

@media (max-width: 560px) {
  .bio {
    gap: 48px;
    padding-top: 94px;
    padding-bottom: 84px;
  }

  .portrait-wrap {
    width: calc(100% - 14px);
    margin-left: 14px;
  }

  .portrait-wrap img {
    height: 460px;
  }

  .bio h2 {
    margin-bottom: 30px;
    font-size: clamp(46px, 13vw, 62px);
  }

  .bio-copy p:not(.eyebrow):not(.bio-signature),
  .bio-copy .intro {
    font-size: 16px !important;
  }

  .bio-copy p.bio-signature {
    padding-left: 42px;
  }

  .bio-copy p.bio-signature::before {
    width: 28px;
  }
}

/* Bio — wersja ciemna: fotografia pozostaje naturalna, błękit odzyskuje kontrast. */
.bio {
  background:
    radial-gradient(circle at 24% 48%, rgba(120, 144, 160, .08), transparent 34%),
    #151a1d;
  color: #c8ced1;
}

.bio .section-number {
  color: #7890a0 !important;
  border-bottom-color: rgba(120, 144, 160, .5) !important;
}

.portrait-wrap::before {
  border-color: rgba(120, 144, 160, .58) !important;
}

.portrait-wrap img {
  filter: none;
  box-shadow: 0 28px 62px rgba(0, 0, 0, .38);
}

.bio-copy .eyebrow {
  color: #7890a0 !important;
}

.bio h2 {
  color: #8fa7b5;
}

.bio-copy p:not(.eyebrow):not(.bio-signature) {
  color: #aeb8bd !important;
}

.bio-copy .intro {
  color: #d0d5d7 !important;
}

.bio-copy p.bio-signature {
  border-top-color: rgba(120, 144, 160, .34);
  color: #8fa7b5 !important;
}

/* Mroczny Depozyt — stabilny układ: prezentacja u góry, opinie poniżej. */
.book-section {
  grid-template-columns: minmax(270px, 400px) minmax(430px, 720px);
  grid-template-areas:
    "cover copy"
    "reviews reviews";
  column-gap: clamp(64px, 8vw, 126px);
  row-gap: 76px;
  align-items: start;
  min-height: auto;
  padding-top: 138px;
  padding-bottom: 126px;
  background: #101416;
}

.book-section .section-number {
  color: #7890a0 !important;
  border-bottom-color: rgba(120, 144, 160, .5) !important;
}

.book-cover {
  grid-area: cover;
  width: 100%;
  max-width: 400px;
  margin: 0;
}

.book-cover img {
  transform: none;
  border-color: rgba(154, 173, 184, .12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .48);
}

.book-cover img.book-back {
  width: 56%;
  margin: 40px auto 0;
  border-color: rgba(154, 173, 184, .09);
  opacity: .82;
  filter: saturate(.68) brightness(.88);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .38);
}

.book-copy {
  grid-area: copy;
  width: 100%;
  max-width: 720px;
}

.book-copy h2,
.book-copy h2 em {
  color: #d7dbdd !important;
}

.cover-description {
  border-top-color: rgba(120, 144, 160, .2);
}

.cover-description h3 {
  color: #e1e4e5;
}

.cover-description p,
.cover-description blockquote {
  color: #d0d5d7 !important;
}

.review-quotes {
  grid-area: reviews;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(38px, 4.5vw, 68px);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.review-heading {
  grid-column: 1 / -1;
  margin: 0 0 30px;
  color: #7890a0;
}

.review-quotes figure,
.review-quotes figure + figure {
  margin: 0;
  padding: 0;
  border: 0;
}

.review-quotes blockquote {
  margin: 0 0 14px;
  color: #8fa7b5;
  font-family: var(--sans);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.72;
}

.review-quotes figcaption a,
.review-quotes figcaption a:hover,
.review-quotes figcaption a:focus-visible {
  color: #f0f2f3 !important;
}

@media (max-width: 900px) {
  .book-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "cover"
      "copy"
      "reviews";
    row-gap: 58px;
  }

  .book-cover {
    max-width: 360px;
    margin: 0 auto;
  }

  .book-cover img.book-back {
    width: 62%;
    margin-top: 34px;
  }

  .book-copy {
    max-width: 720px;
    margin: 0 auto;
  }

  .review-quotes {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .review-quotes {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .review-heading {
    margin-bottom: 0;
  }
}
