/* Antraštės */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
}

.hero-content h1 {
  display: inline-block;
  line-height: 1;
  font-size: clamp(3.3rem, 7vw, 4.7rem);
}

p {
  color: var(--text-soft);
}

/* Badge */
.badge {
    font-family: var(--font-serif);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  margin-top: 0.9rem;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;

  font-size: 0.78rem;
  letter-spacing: 0.22em;

  color: rgba(255,255,255,0.85);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Mygtukai */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-soft);
  font-size: 0.9rem;
  line-height: 1;
  transition: filter .2s ease, background-color .2s ease;
}

.button-primary {
  background: #f2f2f2;
  color: #000;
}

.button-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid var(--border-soft);
}

.button:hover {
  filter: brightness(0.9);
}

/* Atvirutės (dainos) */
.card {
  background: linear-gradient(to bottom, #e6d8bf, #d6c4a8);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  display: flex;
  flex-direction: column;
  transform-origin: center;
  padding: 8px;
  will-change: transform;
}

.card:hover {
  transform: scale(1.08);
  box-shadow:
    0 24px 40px rgba(0,0,0,0.45),
    0 0 18px rgba(230, 223, 201, 0.35);
  filter: brightness(1.2);
}

.card:focus-within {
  transform: scale(1.08);
}

.card-image {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.card-body {
  margin-top: 8px;
  padding: 0.5rem 0.6rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border-top: none;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: #3b2e1e;
  letter-spacing: 0.04em;
}

.grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card-link {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: #3b2e1e;
  text-decoration: none;
  letter-spacing: 0.04em;
  width: 100%;
  height: 100%;
}

.card-link:hover {
  text-decoration: underline;
}

.songs {
  padding: 5rem 0 6rem;
  width: 100%;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0)),
    radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(0,0,0,0) 55%),
    url("../images/plain-bg.png"),
    #2a2017;
  background-size: auto, auto, cover, auto;
  background-position: center, center, center, center;
}

.songs-inner {
  border-radius: 16px;
  padding: 3rem 2.5rem 3.5rem;
}

.songs-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #e7dcc6;
  letter-spacing: 0.12em;
  font-size: 1.4rem;
}

.songs-note {
  margin: -0.8rem 0 1.8rem;
  text-align: center;
  color: #d6c4a7;
  font-size: 0.98rem;
}

.album-playlist-section {
  padding: 2rem 0 6rem;
  width: 100%;
  background-size: auto, auto, cover, auto;
  background-position: center, center, center, center;
}

.album-playlist {
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.album-playlist::before {
  content: "";
  position: absolute;
  inset: -18% auto auto -8%;
  width: 58%;
  height: 48%;
  background: radial-gradient(circle, rgba(255, 206, 132, 0.22), rgba(0, 0, 0, 0) 72%);
  pointer-events: none;
}

.album-playlist::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,0.08) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 72% 62%, rgba(255,255,255,0.05) 0 1px, transparent 1px 100%);
  background-size: 28px 28px, 36px 36px;
  opacity: 0.12;
  pointer-events: none;
}

.listen-elsewhere {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.listen-elsewhere-title {
  margin: 0 0 1rem;
  color: #f0dcc0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.listen-elsewhere-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.listen-elsewhere-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #f7e6c6;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.listen-elsewhere-icon {
  display: block;
  width: auto;
  max-width: 148px;
  height: 24px;
}

.listen-elsewhere-name {
  margin-top: 0.45rem;
  color: rgba(244, 222, 182, 0.62);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.listen-elsewhere-link:hover,
.listen-elsewhere-link:focus-visible {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-1px);
  outline: none;
}

.album-playlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.72fr);
  gap: 0;
  align-items: stretch;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.album-playlist-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--panel-cover-image);
  background-size: cover;
  background-position: center;
  filter: blur(32px) saturate(1);
  opacity: 0.28;
  transform: scale(1.12);
  pointer-events: none;
  z-index: 0;
}

.album-playlist-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(24, 16, 11, 0.22), rgba(24, 16, 11, 0.12));
  pointer-events: none;
  z-index: 0;
}

.album-playlist-panel > * {
  position: relative;
  z-index: 1;
}

.album-playlist-audio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.album-player-stage {
  min-width: 0;
  height: 100%;
}

.album-player-card {
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 1.6rem;
  align-items: center;
  height: 100%;
  padding: 1.8rem;
  border-radius: 0;
  border: 1px solid rgba(255, 224, 175, 0.24);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 200, 120, 0.1), rgba(0, 0, 0, 0) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.05)),
    rgba(38, 24, 17, 0.26);
  box-shadow:
    inset 0 0 0 1px rgba(255, 235, 199, 0.04),
    0 20px 40px rgba(0, 0, 0, 0.22);
}

.album-player-art-frame {
  aspect-ratio: 10 / 9;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.album-player-art-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 246, 224, 0.16), rgba(255, 246, 224, 0) 38%);
  pointer-events: none;
  z-index: 1;
}

.album-player-art {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  animation: album-art-breathe 18s ease-out infinite alternate;
  transform-origin: center;
}

@keyframes album-art-breathe {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .album-player-art {
    animation: none;
    transform: none;
  }

  .album-player-quote-track {
    animation: none;
  }
}

.album-player-card-copy {
  min-width: 0;
  align-self: center;
}

.album-player-now-label {
  margin: 0 0 0.45rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(226, 192, 138, 0.72);
  font-size: 0.74rem;
}

.album-player-current-title {
  margin: 0;
  color: #f7e1b8;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  min-height: 2em;
}

.album-player-quote {
  position: relative;
  margin: 0.45rem 0 1.1rem;
  overflow: hidden;
  color: rgba(224, 202, 167, 0.62);
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  line-height: 1.35;
  white-space: nowrap;
}

.album-player-quote-track {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: max-content;
  animation: album-quote-marquee 26s linear infinite;
}

.album-player-quote-separator {
  opacity: 0.35;
}

@keyframes album-quote-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.album-player-progress-block {
  max-width: 420px;
}

.album-player-times {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
  color: rgba(227, 193, 141, 0.88);
  font-family: var(--font-serif);
  font-size: 1rem;
}

.album-player-progress {
  position: relative;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(62, 43, 24, 0.82), rgba(96, 68, 39, 0.56));
  box-shadow: inset 0 0 0 1px rgba(255, 219, 154, 0.08);
  cursor: pointer;
}

.album-player-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d9922f 0%, #f4b04e 45%, #ffe39b 100%);
  box-shadow:
    0 0 12px rgba(255, 192, 90, 0.55),
    0 0 22px rgba(255, 214, 142, 0.38);
}

.album-player-controls {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 221, 169, 0.12);
}

.album-player-button {
  min-width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(218, 181, 124, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0) 55%),
    rgba(41, 34, 30, 0.78);
  color: rgba(244, 222, 182, 0.9);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.album-player-button:hover,
.album-player-button:focus-visible {
  transform: scale(1.04);
  border-color: rgba(214, 192, 154, 0.22);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
  outline: none;
}

.album-player-button-main {
  width: 92px;
  height: 92px;
  font-size: 1.98rem;
  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.06) 0%,
      rgba(255,255,255,0.02) 60%,
      transparent 100%
    ),
    rgba(29, 23, 20, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 229, 183, 0.06),
    0 0 0 2px rgba(214, 192, 154, 0.12),
    0 0 22px rgba(255, 224, 170, 0.16),
    0 0 42px rgba(232, 168, 72, 0.18);
}

.album-player-control-icon {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
  flex: 0 0 auto;
}

.album-player-mode-button {
  min-width: 54px;
  padding: 0 0.9rem;
}

.album-player-mode-button[data-repeat-mode="one"],
.album-player-mode-button[data-repeat-mode="all"] {
  border-color: rgba(214, 192, 154, 0.22);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.04);
}

.album-player-mode-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.album-player-volume {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 170px;
  padding: 0.7rem 0.95rem;
  border: 0;
  background: transparent;
  color: rgba(244, 222, 182, 0.88);
}

.album-player-volume-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  flex: 0 0 auto;
}

.album-player-volume-slider {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  --volume-progress: 100%;
}

.album-player-volume-slider::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #d9922f 0%, #f4b04e 45%, #ffe39b 100%) 0 0 / var(--volume-progress) 100% no-repeat,
    linear-gradient(90deg, rgba(132, 87, 39, 0.5), rgba(201, 147, 76, 0.28));
  box-shadow: inset 0 0 0 1px rgba(255, 219, 154, 0.08);
}

.album-player-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  margin-top: -3px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, #d9922f 0%, #f4b04e 45%, #ffe39b 100%);
  box-shadow: 0 0 10px rgba(255, 192, 90, 0.45);
}

.album-player-volume-slider::-moz-range-track {
  height: 8px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #d9922f 0%, #f4b04e 45%, #ffe39b 100%) 0 0 / var(--volume-progress) 100% no-repeat,
    linear-gradient(90deg, rgba(132, 87, 39, 0.5), rgba(201, 147, 76, 0.28));
  box-shadow: inset 0 0 0 1px rgba(255, 219, 154, 0.08);
}

.album-player-volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, #d9922f 0%, #f4b04e 45%, #ffe39b 100%);
  box-shadow: 0 0 10px rgba(255, 192, 90, 0.45);
}

.album-playlist-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  height: 100%;
  align-self: stretch;
  border-radius: 0;
  border: 1px solid rgba(214, 175, 118, 0.18);
  border-left: 0;
  background: rgba(20, 13, 9, 0.12);
  overflow: hidden;
}

.album-playlist-list li {
  display: flex;
  width: 100%;
}

.album-track {
  width: 100%;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border: 0;
  border-top: 1px solid rgba(227, 190, 135, 0.12);
  border-radius: 0;
  background: transparent;
  color: rgba(246, 225, 189, 0.92);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.album-playlist-list li:first-child .album-track {
  border-top: 0;
}

.album-track:hover,
.album-track:focus-visible {
  background: rgba(255, 224, 175, 0.04);
  color: #fff0d2;
  outline: none;
}

.album-track.is-active {
  margin: 0;
  width: 100%;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 35%, rgba(255, 189, 90, 0.22), rgba(0, 0, 0, 0) 55%),
    linear-gradient(135deg, rgba(255, 216, 150, 0.18), rgba(255, 216, 150, 0.04)),
    rgba(88, 52, 28, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(255, 235, 199, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.2);
}

.album-track-number {
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  color: rgba(236, 205, 156, 0.88);
}

.album-track-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.album-track.is-active::after {
  content: "";
  position: absolute;
  left: 4.15rem;
  right: 1.2rem;
  bottom: 0.75rem;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #d9922f 0%, #f4b04e 45%, #ffe39b 100%) 0 0 / var(--track-progress, 0%) 100% no-repeat,
    linear-gradient(90deg, rgba(132, 87, 39, 0.5), rgba(201, 147, 76, 0.28));
  box-shadow: 0 0 10px rgba(255, 188, 87, 0.22);
}

/* Videos section */
.videos {
  padding: 5rem 0 6rem;
  width: 100%;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0)),
    radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(0,0,0,0) 55%),
    url("../images/plain-bg.png"),
    #2a2017;
  background-size: auto, auto, cover, auto;
  background-position: center, center, center, center;
}

.videos-inner {
  border-radius: 16px;
  padding: 3rem 2.5rem 3.5rem;
}

.videos-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #e7dcc6;
  letter-spacing: 0.12em;
  font-size: 1.4rem;
}

/* Story section */
.story {
  padding: 5rem 0 6rem;
  width: 100%;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0)),
    radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(0,0,0,0) 55%),
    url("../images/plain-bg.png"),
    #2a2017;
  background-size: auto, auto, cover, auto;
  background-position: center, center, center, center;
}

.story-inner {
  border-radius: 16px;
  padding: 3rem 2.5rem 3.5rem;
}

.story-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #e7dcc6;
  letter-spacing: 0.12em;
  font-size: 1.4rem;
}

.history-copy p {
  color: #e7dcc6;
}

/* Support section */
.support {
  padding: 5rem 0 6rem;
  width: 100%;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0)),
    radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(0,0,0,0) 55%),
    url("../images/plain-bg.png"),
    #2a2017;
  background-size: auto, auto, cover, auto;
  background-position: center, center, center, center;
}

.support-inner {
  border-radius: 16px;
  padding: 3rem 2.5rem 3.5rem;
}

.support-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #e7dcc6;
  letter-spacing: 0.12em;
  font-size: 1.4rem;
}


.songs-title,
.videos-title,
.story-title,
.support-title {
  position: relative;
  display: block;
  padding-bottom: 16px;
}

.songs-title::after,
.videos-title::after,
.story-title::after,
.support-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(420px, 60vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    to right,
    transparent,
    rgba(214,191,150,0.55),
    transparent
  );
}


.support-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-card {
  background: linear-gradient(to bottom, #e6d8bf, #d6c4a8);
  padding: 1.2rem 1.2rem 1.4rem;
  box-shadow: 0 14px 28px rgba(0,0,0,0.4);
  color: #3b2e1e;
}

.support-card h3 {
  margin: 0.4rem 0 0.6rem;
  font-size: 1.1rem;
}

.support-card p {
  margin: 0 0 1rem;
  color: rgba(59, 46, 30, 0.85);
}

.support-link {
  color: #3b2e1e;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.support-link:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-inner {
    padding: 2.5rem 1.6rem 3rem;
  }
}

@media (max-width: 640px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-title {
    margin-bottom: 1.5rem;
  }
}

.story-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.2rem 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(230, 223, 201, 0.28), 0 14px 28px rgba(0,0,0,0.4);
  color: #E6DFC9;
}

.story-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 0.8rem;
}

.story-card h3 {
  margin: 0.4rem 0 0.6rem;
  font-size: 1.1rem;
  color: #E6DFC9;
}

.story-year {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(59, 46, 30, 0.75);
}

.story-card p {
  margin: 0;
  color: #E6DFC9;
}

.story-card p:first-of-type {
  font-size: 0.92em;
  font-style: italic;
}

.story-interview-link {
  margin-top: auto;
  align-self: flex-end;
  display: inline-block;
  padding-top: 0.9rem;
  color: #E6DFC9;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.92rem;
}

@media (max-width: 1000px) {
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-inner {
    padding: 2.5rem 1.6rem 3rem;
  }
}

@media (max-width: 640px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-title {
    margin-bottom: 1.5rem;
  }
}

.video-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  background: linear-gradient(to bottom, #e6d8bf, #d6c4a8);
  padding: 8px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.4);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1000px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .videos-inner {
    padding: 2.5rem 1.6rem 3rem;
  }
}

@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .videos-title {
    margin-bottom: 1.5rem;
  }
}

.songs-grid {
  gap: 1.8rem;
}

@media (max-width: 1000px) {
  .songs-inner {
    padding: 2.5rem 1.6rem 3rem;
  }

  .album-playlist-panel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .album-player-card {
    border-radius: 0;
  }

  .album-playlist-list {
    border-radius: 0;
    border-left: 1px solid rgba(214, 175, 118, 0.18);
    border-top: 0;
  }

}

@media (max-width: 640px) {
  .songs-title {
    margin-bottom: 1.5rem;
  }

  .listen-elsewhere {
    margin-top: 1.4rem;
  }

  .listen-elsewhere-title {
    margin-bottom: 0.8rem;
    font-size: 1rem;
  }

  .listen-elsewhere-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .listen-elsewhere-link {
    min-height: 50px;
    padding: 0.85rem 0.8rem;
    font-size: 0.94rem;
  }

  .listen-elsewhere-icon {
    max-width: 122px;
    height: 20px;
  }

  .listen-elsewhere-name {
    margin-top: 0.38rem;
    font-size: 0.66rem;
  }

  .album-playlist {
    border-radius: 0;
  }

  .album-player-stage {
    margin: 0;
    padding: 0;
  }

  .album-player-card {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 1rem;
    gap: 1rem;
    height: auto;
  }

  .album-player-art-frame {
    aspect-ratio: 10 / 7.8;
  }

  .album-player-now-label {
    margin-bottom: 0.3rem;
  }

  .album-player-current-title {
    min-height: 0;
  }

  .album-player-quote {
    margin: 0.25rem 0 0.65rem;
  }

  .album-player-progress-block {
    max-width: none;
  }

  .album-player-controls {
    gap: 0.7rem;
    padding-top: 1rem;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .album-player-button {
    min-width: 48px;
    height: 48px;
  }

  .album-player-button-main {
    width: 86px;
    height: 86px;
    font-size: 1.45rem;
    background:
      radial-gradient(circle, rgba(255,255,255,0.1), rgba(255,255,255,0.02)),
      rgba(255,255,255,0.06);
    box-shadow:
      inset 0 0 0 1px rgba(255, 229, 183, 0.08),
      0 0 0 2px rgba(214, 192, 154, 0.16),
      0 0 31px rgba(255, 224, 170, 0.26),
      0 0 59px rgba(232, 168, 72, 0.31);
  }

  .album-player-volume {
    min-width: 0;
    width: auto;
    padding: 0;
    gap: 0;
  }

  .album-player-volume-slider {
    display: none;
  }

  .album-player-volume-icon {
    display: none;
  }

  .album-track {
    grid-template-columns: 2.8rem minmax(0, 1fr);
    padding: 1rem;
  }

  .album-track-title {
    font-size: 0.98rem;
  }

  .album-track-number {
    opacity: 0.5;
  }

  .album-track.is-active::after {
    left: 3.8rem;
    right: 1.2rem;
  }
}

/* HERO mygtukas – „popierinis“ */
.button-hero {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.08em;

  padding: 0.4rem 1.9rem;
  border-radius: 6px;

  color: #3b2e1e;
  background:
  linear-gradient(to bottom, #efe1c7, #e3cfad),
  url("../images/button-paper.png");
  background-blend-mode: multiply;

  border: 1px solid rgba(60,40,20,0.35);

  box-shadow:
    0 8px 18px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 12px -12px 20px rgba(0,0,0,0.35),
    inset -12px 12px 20px rgba(255,255,255,0.2);

  text-transform: none;

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    filter .15s ease;
}

.button-hero:hover {
  filter: brightness(1.08);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 12px -12px 20px rgba(0,0,0,0.35),
    inset -12px 12px 20px rgba(255,255,255,0.28),
    0 0 18px rgba(230, 223, 201, 0.35);
}

.button-hero:active {
  transform: translateY(0);
  box-shadow:
    0 4px 10px rgba(0,0,0,0.5),
    inset 0 2px 4px rgba(0,0,0,0.25);
}

.hero-content p {
  max-width: 520px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-content,
.hero-content h1,
.hero-content h2,
.hero-content p,
.hero-content .badge {
  color: #E6DFC9;
}

.hero-content .mini-menu {
  font-family: var(--font-serif);
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #E6DFC9;
}

.hero-content .mini-menu a {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease, text-shadow 0.2s ease;
}

.hero-content .mini-menu a:hover {
  opacity: 1;
  text-shadow: 0 0 8px rgba(230, 223, 201, 0.35);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.actions .button {
  position: relative;
  transition: filter 0.2s ease, background-color 0.2s ease;
}

.actions .button:hover {
  filter: brightness(0.9);
}

/* About section layout */
.about {
  padding: 4.5rem 0;
  width: 100%;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0), rgba(10, 10, 10, 0.65)),
    radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(0,0,0,0) 55%),
    url("../images/plain-bg.png"),
    #2a2017;
  background-size: auto, auto, cover, auto;
  background-position: center, center, center, center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.about-copy p {
  max-width: 52ch;
  color: #E6DFC9;
}

.about-copy .about-intro {
  font-size: 0.92em;
  font-style: italic;
}

.about-copy h2 {
  color: #E6DFC9;
}

.about-cta {
  margin-top: 1.2rem;
  font-style: italic;
  color: #E6DFC9;
}

.about-product {
  margin: 0;
  padding: 1.2rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.about-product img {
  width: 100%;
  display: block;
  border-radius: 0;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.contacts {
  padding-top: 4rem;
}

.contacts-grid {
  align-items: start;
}

.contacts-copy p {
  max-width: 58ch;
}

.contacts-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contacts-line {
  margin: 0;
  color: #E6DFC9;
}

.contacts-line a {
  color: #E6DFC9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contacts-line a:hover {
  opacity: 0.85;
}

.section-top-link {
  margin: 1.25rem auto 0;
  text-align: center;
}

.section-top-link a {
  color: #e7dcc6;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.9;
}

.section-top-link a:hover {
  opacity: 1;
}
