.visual-universe {
  background: #081016;
  color: #f2efe8;
}

.visual-universe .site-header {
  background: rgba(7, 12, 16, 0.96);
  border-bottom: 1px solid rgba(209, 185, 141, 0.22);
}

.visual-universe .brand,
.visual-universe .nav a {
  color: #f2efe8;
}

.visual-universe .nav a:hover {
  color: #d1b98d;
}

.visual-main {
  min-height: 100vh;
  background-color: #081016;
  background-image:
    linear-gradient(
      180deg,
      rgba(5, 10, 14, 0.68) 0%,
      rgba(5, 10, 14, 0.78) 48%,
      rgba(5, 10, 14, 0.94) 100%
    ),
    url("../assets/visuelt-univers-bakgrunn.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.visual-section {
  padding: 76px 0 100px;
}

.visual-wrap {
  position: relative;
}

.visual-kicker {
  margin: 0 0 18px;
  color: #d1b98d;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.visual-main h1 {
  max-width: none;
  margin: 0;
  color: #f2efe8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  white-space: nowrap;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.6);
}

.visual-intro {
  max-width: 760px;
  margin: 30px 0 50px;
  color: #e2e4e3;
  font-size: 1.1rem;
  line-height: 1.75;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

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

.download-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(10, 17, 22, 0.82);
  border: 1px solid rgba(209, 185, 141, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.download-card:hover {
  transform: translateY(-5px);
  border-color: rgba(209, 185, 141, 0.75);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48);
}

.download-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  padding: 18px;
  overflow: hidden;
  background: rgba(2, 6, 9, 0.76);
  border-bottom: 1px solid rgba(209, 185, 141, 0.25);
}

.download-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-preview img,
.mobile-preview img {
  object-fit: contain;
}

.download-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.download-label {
  margin-bottom: 10px;
  color: #d1b98d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.download-content h2 {
  margin: 0 0 12px;
  color: #f2efe8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.15;
}

.download-content p {
  margin: 0 0 24px;
  color: #cbd0d1;
  line-height: 1.6;
}

.download-button {
  display: inline-block;
  margin-top: auto;
  padding: 13px 18px;
  color: #0a1014;
  background: #d1b98d;
  border: 1px solid #d1b98d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.download-button:hover {
  color: #f2efe8;
  background: transparent;
}

.visual-universe footer {
  background: #05090c;
  color: #aeb5b7;
  border-top: 1px solid rgba(209, 185, 141, 0.18);
}

.visual-universe footer a {
  color: #d8c7a7;
}

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

  .download-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .visual-main {
    background-attachment: scroll;
    background-position: 60% top;
  }

  .visual-section {
    padding: 54px 0 72px;
  }

  .visual-main h1 {
      white-space: normal;
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .visual-intro {
    margin: 24px 0 38px;
    font-size: 1rem;
  }

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

  .download-card:last-child {
    grid-column: auto;
  }

  .download-preview {
    height: 300px;
  }
}