.container {
  max-width: 1044px;
  margin: 0 auto;
  padding: 20px 40px;

}

.about-intro {
  background: #f3eef3;
}

.about-intro-inner {
  display: flex;
  flex-direction: column;
  max-width: 820px;
}

.about-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: #3e323e;
  margin-bottom: 8px;
}

.about-intro-text p {
  font-family: 'Jost', sans-serif;
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.85;
  color: #4a3d4a;
  margin-bottom: 14px;
}

.about-intro-text p:last-child { margin-bottom: 0; }



.directions-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #3e323e;
  margin-bottom: 32px;
}

.directions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}

.direction-item {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease calc(var(--i, 0) * 0.08s),
    transform 0.4s ease calc(var(--i, 0) * 0.08s);
}

.direction-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.direction-item span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.5;
  color: #4a3d4a;
  background: #ede7f2;
  border: none;
  border-radius: 50px;
  padding: 13px 24px;
}



.about-invite {
  background: #f3eef3;
  margin-top: 50px;
}

.about-quote {
  border: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.about-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #3e323e;
  padding: 0;
}

.about-quote p::before,
.about-quote p::after { display: none; }

.about-quote .btn-primary { display: none; }

@media (max-width: 640px) {
  .about-intro {
    padding: 36px 0 32px;
  }

  .about-page-title {
    font-size: 1.75rem;
  }

  .about-intro-text p {
    font-size: 0.9rem;
  }

  .directions-section {
    padding: 32px 0 44px;
  }

  .directions-heading {
    font-size: 1.45rem;
    margin-bottom: 22px;
  }

  .direction-item span {
    font-size: 0.86rem;
    padding: 11px 18px;
  }

  .about-invite {
    padding: 40px 0 56px;
  }

  .about-quote p {
    font-size: 1.05rem;
  }
}

@media (max-width: 380px) {
  .direction-item span {
    font-size: 0.82rem;
    padding: 10px 14px;
  }
}