:root {
  --ink: #17120d;
  --paper: #fbf5e8;
  --cream: #f3e5c8;
  --wood: #6c3f24;
  --ember: #c84d2b;
  --gold: #d79b42;
  --leaf: #294b36;
  --blue: #27415f;
  --muted: #756858;
  --line: rgba(23, 18, 13, 0.16);
  --shadow: 0 22px 70px rgba(23, 18, 13, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  align-items: center;
  background: rgba(23, 18, 13, 0.9);
  color: #fff8e8;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  z-index: 20;
}

.site-header.scrolled {
  background: rgba(23, 18, 13, 0.97);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.brand {
  align-items: center;
  display: flex;
  font-weight: 850;
  gap: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  background: var(--cream);
  border-radius: 50%;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.nav-toggle span {
  background: #fff8e8;
  display: block;
  height: 2px;
  margin: 6px 0;
}

.hero {
  color: #fff8e8;
  min-height: 92svh;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 78px) 34px;
  position: relative;
}

.hero-bg,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-bg {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 9, 5, 0.65), rgba(13, 9, 5, 0.35) 48%, rgba(13, 9, 5, 0.08)),
    linear-gradient(0deg, rgba(13, 9, 5, 0.55), rgba(13, 9, 5, 0.0) 42%);
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.9rem, 10vw, 8.4rem);
  line-height: 0.88;
  margin-bottom: 22px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 4.6rem);
  line-height: 0.98;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-lead {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.55;
  max-width: 620px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
}

.button.primary {
  background: var(--ember);
  color: #fff8e8;
}

.button.secondary {
  background: #fff8e8;
  color: var(--ink);
}

.button.music {
  background: var(--gold);
  color: var(--ink);
}

.button.map {
  border-color: rgba(255, 248, 232, 0.42);
  color: #fff8e8;
}

.hero-info {
  bottom: 24px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: clamp(20px, 6vw, 78px);
  max-width: 980px;
  position: absolute;
  right: clamp(20px, 6vw, 78px);
  z-index: 1;
}

.hero-info span {
  border-top: 1px solid rgba(255, 248, 232, 0.32);
  font-weight: 800;
  padding-top: 14px;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 78px);
}

.intro-grid {
  display: grid;
  gap: clamp(28px, 6vw, 82px);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.feature-band {
  background: var(--leaf);
  color: #fff8e8;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
  border-right: 1px solid rgba(255, 248, 232, 0.14);
  display: grid;
  gap: 18px;
  min-height: 190px;
  padding: clamp(28px, 5vw, 54px);
}

.feature strong {
  color: var(--gold);
}

.feature span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  line-height: 1.08;
}

.menu-section {
  background: #fffaf0;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 0;
  max-width: 780px;
}

.text-link {
  border-bottom: 2px solid var(--ember);
  color: var(--ember);
  font-weight: 900;
  padding-bottom: 5px;
  white-space: nowrap;
}

.menu-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 66px);
  grid-template-columns: minmax(290px, 0.9fr) minmax(300px, 0.7fr);
}

.menu-list {
  border-top: 1px solid var(--line);
}

.menu-list article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px 0;
}

.menu-list span {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 850;
}

.menu-list strong {
  color: var(--ember);
  font-size: 1.4rem;
  white-space: nowrap;
}

.menu-preview,
.gallery button {
  background: transparent;
  border: 0;
  cursor: zoom-in;
  padding: 0;
}

.menu-preview img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: min(100%, 460px);
}

.split-section {
  align-items: stretch;
  background: var(--ink);
  color: #fff8e8;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.split-media img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  width: 100%;
}

.split-content {
  align-self: center;
  padding: clamp(48px, 7vw, 86px);
}

.split-content p {
  color: rgba(255, 248, 232, 0.78);
  line-height: 1.7;
}

.clean-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.clean-list li {
  border-top: 1px solid rgba(255, 248, 232, 0.16);
  font-weight: 800;
  padding-top: 14px;
}

.events {
  background: var(--cream);
}

.event-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.3fr 1fr 1fr;
}

.event-grid article {
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  padding: 24px;
}

.event-grid .music-card {
  background:
    linear-gradient(135deg, rgba(23, 18, 13, 0.9), rgba(108, 63, 36, 0.92)),
    var(--ink);
  color: #fff8e8;
}

.event-grid .music-card p {
  color: rgba(255, 248, 232, 0.78);
}

.music-card .button {
  margin-top: 12px;
}

.event-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.event-main {
  display: grid;
  gap: 22px;
  grid-row: span 2;
}

.event-main img {
  border-radius: 6px;
  width: 100%;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
  background: transparent;
  border: 0;
  border-radius: 12px;
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gallery-item img {
  aspect-ratio: 4 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--feature {
  box-shadow: 0 14px 36px rgba(23, 18, 13, 0.22);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(41, 75, 54, 0.96), rgba(39, 65, 95, 0.94)),
    var(--leaf);
  color: #fff8e8;
}

.contact-panel {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 1.1fr 0.9fr auto;
}

.contact-panel p {
  color: rgba(255, 248, 232, 0.78);
  line-height: 1.65;
  max-width: 640px;
}

.qr-box {
  align-items: center;
  display: grid;
  gap: 12px;
  justify-items: center;
  max-width: 160px;
  text-align: center;
}

.qr-box img {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
}

.qr-box span {
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: #fff8e8;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
}

.site-footer img {
  background: var(--cream);
  border-radius: 50%;
  height: 46px;
  object-fit: cover;
  width: 46px;
}

.site-footer span {
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255, 248, 232, 0.72);
  margin: 0;
}

.lightbox {
  align-items: center;
  background: rgba(10, 7, 4, 0.92);
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 26px;
  position: fixed;
  z-index: 50;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  border-radius: 8px;
  max-height: 88svh;
  object-fit: contain;
}

.lightbox button {
  background: #fff8e8;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  font-size: 2rem;
  height: 48px;
  position: fixed;
  right: 22px;
  top: 22px;
  width: 48px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: var(--ink);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 22px;
    position: absolute;
    right: 0;
    top: 76px;
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    min-height: 88svh;
    padding-top: 132px;
  }

  .hero-info,
  .intro-grid,
  .feature-band,
  .menu-layout,
  .split-section,
  .event-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-info {
    margin-top: 54px;
    position: relative;
    inset: auto;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .split-media img {
    min-height: 360px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item--feature {
    grid-column: span 1;
  }

  .gallery-item--feature img {
    aspect-ratio: 4 / 3;
  }

  .qr-box {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.9rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .menu-list article {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
}
/* === PROFESJONALNY DESIGN === */

/* Kolorystyka */
:root {
  --color-dark: #17120d;
  --color-accent: #c5a46e;      /* Złoty akcent */
  --color-card: #1f1814;
  --color-text: #f5f0e6;
  --color-muted: #a89e8f;
}

/* Feature Cards - nowoczesne i eleganckie */
.feature-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 3rem 1.5rem;
  background: var(--color-dark);
}

.feature-card {
  background: var(--color-card);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(197, 164, 110, 0.1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-number {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin: 0.5rem 0 0.75rem;
  color: var(--color-text);
  line-height: 1.3;
}

.feature-card p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Lepsze przyciski */
.button {
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.button.primary {
  background: var(--color-accent);
  color: #17120d;
  border: none;
}

.button.primary:hover {
  background: #d4b57d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 164, 110, 0.3);
}

.button.secondary {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.button.secondary:hover {
  background: var(--color-accent);
  color: #17120d;
}

/* Poprawa menu */
.menu-category {
  background: #1f1814;
  color: #f5f0e6;
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(197, 164, 110, 0.08);
}

.menu-category h3 {
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  border-bottom: 1px solid rgba(197, 164, 110, 0.2);
  padding-bottom: 0.5rem;
}

.menu-note {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-top: 1rem;
  font-style: italic;
}
/* === NOWE PROFESJONALNE STYLE === */

.feature-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 1.5rem;
  background: #1a140f;
}

.feature-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,18,13,0.88) 25%, rgba(23,18,13,0.25) 70%);
}

.feature-card-content {
  position: relative;
  padding: 2rem;
  z-index: 2;
}

.feature-number {
  color: #c5a46e;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 0.4rem;
}

.feature-card h3 {
  font-size: 1.55rem;
  margin: 0 0 0.6rem;
  color: #fff;
  line-height: 1.2;
}

.feature-card p {
  color: #d4c9b5;
  font-size: 1.05rem;
  margin: 0;
}

.intro-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.split-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Menu rozwijane */
.menu-toggle {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 1.5rem auto;
  padding: 14px 24px;
  background: #17120d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.menu-category {
  background: #1f1814;
  color: #f5f0e6;
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(197, 164, 110, 0.1);
}

.menu-category h3 {
  color: #c5a46e;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  border-bottom: 1px solid rgba(197, 164, 110, 0.2);
  padding-bottom: 0.5rem;
}

.menu-note {
  font-size: 0.95rem;
  color: #a89e8f;
  margin-top: 1rem;
  font-style: italic;
}

/* === Menu rozwijane (collapsible) === */
.menu-category {
  padding: 0;
}

.menu-category > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  margin: 0;
  border-bottom: 1px solid rgba(197, 164, 110, 0.2);
  transition: background 0.2s ease;
  user-select: none;
}

.menu-category > summary::-webkit-details-marker { display: none; }
.menu-category > summary::marker { display: none; }

.menu-category > summary:hover {
  background: rgba(197, 164, 110, 0.06);
}

.menu-category > summary:focus-visible {
  outline: 2px solid #c5a46e;
  outline-offset: -2px;
}

.menu-category .cat-title {
  color: #c5a46e;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  flex: 1;
}

.menu-category .cat-toggle {
  color: #c5a46e;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease;
  display: inline-block;
  margin-left: 12px;
}

.menu-category[open] .cat-toggle {
  transform: rotate(45deg); /* "+" staje się "×" */
}

.menu-category[open] > summary {
  border-bottom: 1px solid rgba(197, 164, 110, 0.2);
}

.menu-category > .menu-list,
.menu-category > .menu-note {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.menu-category > .menu-list {
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
  border-top: 0;
}

.menu-category > .menu-note {
  padding-bottom: 1.25rem;
  margin-top: 0;
}

/* Pozycje menu: ceny tuż przy nazwach, lepszy kolor */
.menu-list article {
  align-items: baseline;
  border-bottom: 1px solid rgba(197, 164, 110, 0.12);
  display: flex;
  gap: 14px;
  padding: 12px 0;
}

.menu-list article:last-child {
  border-bottom: 0;
}

.menu-list span {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: #f5f0e6;
}

.menu-list strong {
  color: #d79b42;            /* złoty — lepszy kontrast niż ember na ciemnym tle */
  font-size: 1.15rem;
  font-weight: 800;
  white-space: nowrap;
}

/* === Feature-band — numer + opis (bez ikon) === */
.feature {
  align-items: start;
  display: grid;
  gap: 8px;
  grid-template-rows: auto 1fr;
}

.feature strong {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.feature span {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.32;
}

/* === Sekcja opinii === */
.testimonials {
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(23, 18, 13, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--ink);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.testimonial-author {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
}

/* === Status "Otwarte teraz / Zamknięte" === */
.open-now {
  align-items: center;
  background: rgba(255, 248, 232, 0.08);
  border: 1px solid rgba(255, 248, 232, 0.18);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 10px;
  margin-bottom: 1.25rem;
  padding: 8px 16px;
}

.open-now-dot {
  background: #c84d2b;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.open-now.is-open .open-now-dot {
  background: #6dbe5a;
  box-shadow: 0 0 0 4px rgba(109, 190, 90, 0.25);
}

.open-now-detail {
  color: rgba(255, 248, 232, 0.78);
  font-weight: 500;
}

/* === Sticky phone button (mobile) === */
.phone-fab {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  color: #fff8e8;
  display: none;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 22px;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 56px;
  z-index: 30;
}

.phone-fab:hover,
.phone-fab:focus-visible {
  background: #1ea84d;
  transform: scale(1.06);
}

.phone-fab svg {
  height: 26px;
  width: 26px;
}

@media (max-width: 768px) {
  .phone-fab {
    display: flex;
  }
}

/* === Przycisk "Posłuchaj utworów" (czerwony + puls tła) === */
.button-icon {
  height: 18px;
  margin-right: 8px;
  width: 18px;
}

.button.music {
  background-color: #c84d2b !important;
  color: #ffffff !important;
  border: none !important;
  animation: musicPulse 1.5s ease-in-out infinite;
}

@keyframes musicPulse {
  0%, 100% {
    background-color: #c84d2b;
    transform: scale(1);
  }
  50% {
    background-color: #ff2e00;
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button.music {
    animation: none;
  }
}

/* === Przycisk "Sprawdź menu" (secondary) — ZAWSZE złoty === */
.button.secondary {
  background-color: var(--gold) !important;
  border-color: transparent !important;
  color: var(--ink) !important;
}

.button.secondary:hover {
  background-color: #e0a548 !important;
}

/* === FAQ — link do playlisty widoczny === */
.faq-item p a {
  color: var(--ember);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--ember);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.faq-item p a:hover {
  color: #d65a36;
}

/* === Nawigacja: link "Muzyka" === */
.site-nav a.nav-music {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  gap: 6px;
  opacity: 1;
}

.site-nav a.nav-music svg {
  height: 16px;
  width: 16px;
}

.site-nav a.nav-music:hover {
  opacity: 1;
}

/* === Animacje scroll fade-in === */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}