body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #22282B;
  background-color: #F4EFE6;
  font-weight: 300;
}

h1, h2, h3, .manifest-title {
  font-family: "Libre Baskerville", serif;
  color: #4B3C29;
  font-weight: 700;
  line-height: 1.3;
}

.quote-text {
  font-family: "Source Sans 3", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: #4B3C29;
}

.boundaries {
  padding: var(--spacing-xl) 0;
  background-color: #F4EFE6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}
.boundaries__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: 0 var(--spacing-lg);
}
@media (max-width: 576px) {
  .boundaries__container {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
}
.boundaries__point {
  flex: 1;
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
  color: rgb(79.038961039, 92.987012987, 99.961038961);
  font-size: 1.2rem;
  padding: var(--spacing-md);
}
.boundaries__center {
  flex: 2;
  display: flex;
  justify-content: center;
}
.boundaries__circle {
  width: clamp(280px, 35vw, 450px);
  height: clamp(280px, 35vw, 450px);
  background-color: #E0B11F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  box-shadow: 0 10px 30px rgba(75, 60, 41, 0.05);
  transition: transform 0.3s ease;
}
.boundaries__circle:hover {
  transform: scale(1.02);
}
.boundaries__text {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: #4B3C29;
  text-align: center;
  line-height: 1.4;
}

.hero-line {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #F4EFE6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-line__wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 100vh;
}
.hero-line__visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-line__visual svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-line__path {
  fill: none;
  stroke: #E0B11F;
  stroke-width: 8px;
  stroke-linecap: round;
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  animation: drawLine 3s ease-out forwards;
}
.hero-line__content {
  position: absolute;
  z-index: 2;
  top: 48%;
  left: 52%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 40vw;
  max-width: 500px;
}
@media (max-width: 576px) {
  .hero-line__content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-top: 55vh;
  }
}
.hero-line__title {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  color: #4B3C29;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
@media (max-width: 576px) {
  .hero-line__title {
    font-size: 2.2rem;
  }
}
.hero-line__motto {
  font-family: "Source Sans 3", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.8vw, 1.3rem);
  color: #22282B;
  line-height: 1.4;
}
@media (max-width: 576px) {
  .hero-line__motto {
    font-size: 1.1rem;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}/*# sourceMappingURL=style.css.map */