/*
  Echte Momente Landingpage
  Version: 1.4.15
*/

:root {
  --color-black: #0b0b0b;
  --color-charcoal: #171717;
  --color-gold: #d4af37;
  --color-warm-white: #f6f1e8;
  --color-muted: #cfc7b8;
  --content-width: 920px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-warm-white);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

button {
  font: inherit;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.09) 0%, rgba(74, 52, 24, 0.08) 34%, rgba(11, 11, 11, 0.96) 72%, #050505 100%),
    linear-gradient(180deg, #050505 0%, #070706 52%, #050505 100%);
}

.hero__content {
  width: min(100%, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__visual {
  position: relative;
  width: 100%;
  height: min(58vh, 520px);
  display: grid;
  place-items: center;
  margin-bottom: 36px;
}

.hero__logo-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 2000ms ease-in-out;
}

.hero__logo-wrap::before {
  content: "";
  position: absolute;
  inset: -24% -48%;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, rgba(94, 64, 28, 0.06) 48%, transparent 88%);
  filter: blur(96px);
}

.hero__logo {
  position: relative;
  z-index: 1;
  width: 420px;
  max-width: calc(100vw - 48px);
  height: auto;
  display: block;
}

.story-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: visible;
  pointer-events: none;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--story-fade-ms, 1500ms) ease-in-out;
}

.story-stage.is-active {
  opacity: 1;
  visibility: visible;
}

.story-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: opacity var(--story-fade-ms, 1500ms) ease-in-out;
}

.story-frame.is-visible {
  z-index: 2;
  opacity: 1;
}

.story-frame img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.storyboard-logo,
.storyboard-heart {
  width: 420px !important;
  max-width: 82vw !important;
  height: auto !important;
  max-height: none !important;
  animation: none !important;
}

.storyboard-scene {
  width: auto;
  height: auto;
  max-width: 78vw;
  max-height: 62vh;
  animation: storyKenBurns var(--story-zoom-ms, 9000ms) ease-in-out forwards;
}

.hero__controls {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero__content.is-controls-hidden .hero__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.song-button {
  position: relative;
  z-index: 3;
}

.hero__content.is-story-active .hero__logo-wrap {
  opacity: 0;
  pointer-events: none;
}

.hero__content.is-paused .story-frame img {
  animation-play-state: paused;
}

@keyframes storyKenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

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

h1 {
  margin-bottom: 18px;
  color: var(--color-warm-white);
  font-size: clamp(2.25rem, 7vw, 5.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.hero__text {
  margin-bottom: 40px;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.song-button,
.music__links a {
  min-height: 54px;
  border: 1px solid rgba(212, 175, 55, 0.72);
  border-radius: 4px;
  background: rgba(7, 7, 7, 0.44);
  color: var(--color-warm-white);
  cursor: pointer;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    color 260ms ease,
    transform 260ms ease;
}

.song-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(310px, 100%);
  max-width: 310px;
  padding: 16px 30px;
  font-size: 1.04rem;
}

.song-button--fullscreen {
  max-width: 260px;
  background: rgba(255, 255, 255, 0.025);
}

.song-button:hover,
.song-button:focus-visible {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.14);
  color: #fffaf0;
  transform: translateY(-1px);
}

.music__links a:hover,
.music__links a:focus-visible {
  border-color: #e6c65a;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.16);
  color: #fffaf0;
}

.section-inner {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
}

.philosophy,
.music {
  padding: clamp(92px, 14vw, 160px) 0;
  text-align: center;
}

.philosophy {
  background: var(--color-charcoal);
}

.philosophy h2 {
  margin-bottom: 44px;
  color: var(--color-warm-white);
  font-size: clamp(2rem, 5vw, 4.1rem);
  font-weight: 400;
  line-height: 1.2;
}

.philosophy__text {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.philosophy__text p {
  margin-bottom: 18px;
}

.philosophy__text p:last-child,
.footer p {
  margin-bottom: 0;
}

.music {
  background: linear-gradient(180deg, var(--color-black), #101010);
}

.music h2 {
  margin-bottom: 18px;
  color: var(--color-gold);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
}

.music__intro {
  max-width: 680px;
  margin: 0 auto 48px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.music__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.music__links a {
  width: 100%;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  text-decoration: none;
}

.music__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: color 260ms ease, transform 260ms ease;
}

.music__links a:hover .music__icon,
.music__links a:focus-visible .music__icon {
  color: #e6c65a;
  transform: scale(1.05);
}

.music__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.music__icon circle,
.music__icon rect {
  fill: rgba(212, 175, 55, 0.08);
}

.footer {
  padding: 34px 24px;
  background: #080808;
  color: rgba(246, 241, 232, 0.64);
  text-align: center;
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.footer__links a {
  color: rgba(246, 241, 232, 0.76);
  text-decoration: none;
  transition: color 220ms ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--color-gold);
}

html:has(body.legal-page) {
  background: #050505;
}

body.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.08) 0%, rgba(80, 55, 20, 0.06) 24%, rgba(5, 5, 5, 0) 58%),
    linear-gradient(180deg, #080808 0%, #0b0b0b 48%, #050505 100%) !important;
  color: var(--color-warm-white);
}

.legal-header {
  padding: 32px 24px 0;
  text-align: center;
}

.legal-header a {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-main {
  width: min(calc(100% - 48px), 880px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0 clamp(86px, 12vw, 140px);
}

.legal-main h1 {
  margin-bottom: 16px;
  color: var(--color-gold);
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

.legal-intro {
  max-width: 680px;
  margin: 0 auto 58px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  text-align: center;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.legal-section h2 {
  margin-bottom: 16px;
  color: var(--color-warm-white);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 400;
}

.legal-section h3 {
  margin: 24px 0 10px;
  color: var(--color-gold);
  font-size: 1.05rem;
  font-weight: 600;
}

.legal-section p,
.legal-section li {
  color: var(--color-muted);
}

.legal-section ul {
  margin: 14px 0 0 20px;
}

.legal-section a {
  color: var(--color-gold);
}

.legal-note {
  margin-top: 42px;
  color: rgba(246, 241, 232, 0.58);
  font-size: 0.95rem;
  text-align: center;
}

.contact-main {
  width: min(calc(100% - 48px), 720px);
  min-height: calc(100vh - 210px);
  display: grid;
  place-items: center;
  padding: clamp(48px, 8vw, 86px) 0;
}

.contact-card {
  width: 100%;
  padding: clamp(34px, 7vw, 64px);
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: rgba(8, 8, 8, 0.62);
  box-shadow: 0 0 70px rgba(212, 175, 55, 0.08);
  text-align: center;
}

.contact-card h1 {
  margin-bottom: 24px;
}

.contact-card p {
  max-width: 560px;
  margin: 0 auto 34px;
  color: var(--color-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.contact-card__email {
  margin-bottom: 20px !important;
  color: var(--color-warm-white) !important;
  font-size: clamp(1.05rem, 2vw, 1.22rem) !important;
  word-break: break-word;
}

.contact-card__feedback {
  min-height: 1.7em;
  margin: 16px auto 0 !important;
  color: var(--color-gold) !important;
  font-size: 0.98rem !important;
}

.contact-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 26px;
  border: 1px solid rgba(212, 175, 55, 0.74);
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-warm-white);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-card__button:hover,
.contact-card__button:focus-visible {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.16);
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.16);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.fade-in {
  opacity: 1;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1200ms ease,
    transform 1200ms ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .song-button,
  .music__links a,
  .fade-in.is-visible,
  .reveal.is-visible,
  .story-frame {
    transition: none;
  }

  .reveal {
    transform: none;
  }

  .story-frame img {
    animation: none;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 40px 22px;
  }

  .hero__visual {
    height: min(58vh, 500px);
    margin-bottom: 32px;
  }

  .hero__logo {
    width: 380px;
  }

  .storyboard-logo,
  .storyboard-heart {
    width: 380px !important;
    max-width: 82vw !important;
  }

  .music__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .section-inner {
    width: min(calc(100% - 36px), var(--content-width));
  }

  .hero__visual {
    height: min(54vh, 390px);
    margin-bottom: 28px;
  }

  .hero__logo {
    width: 300px;
    max-width: calc(100vw - 36px);
  }

  .storyboard-logo,
  .storyboard-heart {
    width: 300px !important;
    max-width: 82vw !important;
  }

  .storyboard-scene {
    max-width: 90vw;
    max-height: 55vh;
  }

  .hero__controls {
    width: 100%;
  }

  .song-button {
    width: 100%;
    max-width: 310px;
    padding-inline: 18px;
  }

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


@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: 100vh;
    padding: 14px 18px;
  }

  .hero__content {
    width: min(100%, 760px);
  }

  .hero__visual {
    height: min(62vh, 300px);
    margin-bottom: 14px;
  }

  .hero__logo,
  .storyboard-logo,
  .storyboard-heart {
    width: min(230px, 32vw) !important;
    max-width: 32vw !important;
  }

  .storyboard-scene {
    max-width: 72vw;
    max-height: 58vh;
  }

  .hero__controls {
    gap: 10px;
  }

  .song-button {
    min-height: 42px;
    width: min(300px, 62vw);
    max-width: 62vw;
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}
