/* Produktdarstellung: bewusst nah am bestehenden Auftritt, mit naturwarmem Papier. */
.hero-product {
  display: grid;
  min-height: 36rem;
  place-items: center;
}

.hero-product img {
  width: min(100%, 31rem);
  filter: drop-shadow(0 1.4rem 1.3rem rgb(65 55 43 / 0.16));
}

.calendar-title {
  font-family: "Jost", ui-sans-serif, system-ui, sans-serif;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-weight: 300;
  letter-spacing: -0.032em;
  text-rendering: geometricPrecision;
}

.calendar-title-yearline {
  display: block;
  font-size: clamp(3.1rem, 6.4vw, 5.15rem);
  line-height: 0.98;
  white-space: nowrap;
}

.calendar-title-yearline strong {
  font-weight: 700;
  letter-spacing: -0.045em;
}

.calendar-title-divider {
  margin-inline: 0.08em;
  color: var(--muted-foreground);
  font-weight: 300;
}

.calendar-title-place {
  display: block;
  margin-top: 0.55em;
  font-size: clamp(2rem, 3.75vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.026em;
}

.inside-section {
  display: grid;
  gap: 3rem;
}

.inside-intro {
  align-self: center;
}

.paper-note {
  display: flex;
  max-width: 27rem;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px dashed var(--border);
  padding-top: 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.45;
}

.paper-note strong {
  color: var(--foreground);
  font-weight: 500;
}

.paper-swatch {
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  border: 1px solid rgb(104 93 78 / 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgb(255 255 255 / 0.48), transparent 35%),
    #eee7d8;
  box-shadow: inset 0 0 0 0.35rem rgb(255 255 255 / 0.16);
}

.page-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 1.2rem;
}

.page-example {
  min-width: 0;
}

.page-example-back {
  transform: translateY(1.7rem);
}

.page-side {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--muted-foreground);
}

.munken-sheet {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgb(255 255 255 / 0.34), transparent 30%),
    #eee7d8;
  box-shadow: 0 1.2rem 2rem rgb(65 55 43 / 0.12), 0 0 0 1px rgb(95 82 64 / 0.08);
}

.munken-sheet::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    96deg,
    transparent 0,
    transparent 4px,
    rgb(80 68 51 / 0.012) 5px
  );
  content: "";
}

.munken-sheet img {
  width: 100%;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.page-example figcaption {
  margin-top: 0.85rem;
  color: var(--muted-foreground);
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .inside-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(25rem, 1.2fr);
    align-items: center;
  }
}

@media (max-width: 767px) {
  .hero-product {
    min-height: auto;
  }

  .page-pair {
    gap: 0.8rem;
  }

  .page-example-back {
    transform: translateY(1rem);
  }

  .page-example figcaption {
    font-size: 0.72rem;
  }
}

@media (max-width: 390px) {
  .calendar-title-yearline {
    font-size: 2.55rem;
  }
}
