:root {
  --primary-text: #1a1a1a;
  --secondary-text: #4a4a4a;
  --background-color: #ffffff;
  --accent-color: #d4d4d4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Source Serif Pro', 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--primary-text);
  line-height: 1.8;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  opacity: 0;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 25px;
}

.page-header {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 60px;
  margin-bottom: 40px;
  border-bottom: 1px solid transparent;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5em;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
}

.subtitle {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--secondary-text);
  font-size: 1.4em;
  margin-top: 15px;
}

.manifesto-section {
  margin-bottom: 80px;
}

.manifesto-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 400;
}

.manifesto-section p {
  color: var(--secondary-text);
  margin-bottom: 25px;
  text-align: justify;
  text-justify: inter-word;
}

.intro-text {
  font-size: 1.2em;
  text-align: center !important;
  color: var(--primary-text) !important;
}

.divider {
  width: 60px;
  height: 1px;
  background-color: var(--primary-text);
  margin: 80px auto;
}

.quote-wrapper {
  padding: 80px 0 120px 0;
  text-align: center;
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.7em;
  font-style: italic;
  line-height: 1.4;
  margin: 0;
  color: var(--primary-text);
}

cite {
  display: block;
  margin-top: 30px;
  font-family: 'Source Serif Pro', serif;
  font-style: normal;
  font-size: 0.8em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #050505;
}


@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .page-header {
    padding-top: 130px;
  }

  .page-header h1 {
    font-size: 2.8em;
  }

  .manifesto-section p {
    text-align: left;
  }

  blockquote {
    font-size: 1.6em;
  }
}