/* =========================================================
   About section
   ========================================================= */
#about {
  background: var(--color-white);
  padding: 60px 20px;
}

.about-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image {
  width: 300px;
  height: 380px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  flex-shrink: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text {
  max-width: 700px;
  padding-left: 24px;
  border-left: 3px solid var(--color-brand);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

.about-text h2 {
  color: var(--color-brand);
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 14px;
}

.about-text p {
  line-height: 1.65;
  margin-bottom: 18px;
  color: var(--color-text);
}

.about-text p:first-of-type {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: #555;
}

.about-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  margin-top: -2px;
  margin-bottom: 24px;
}

.about-signature {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-brand);
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =========================================================
   Story section (My Story / My Approach / Why Pilates by Karlis)
   ========================================================= */
#story-section {
  background: var(--color-white);
  max-width: none;
  margin: 0;
  padding: 60px 20px 80px;
}

.story-container {
  max-width: 760px;
  margin: auto;
}

.story-block {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
}

.story-block:first-child {
  border-top: none;
  padding-top: 0;
}

.story-block h2 {
  font-size: 28px;
  color: var(--color-brand);
  margin-bottom: 24px;
}

.story-block p {
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 16px;
}

.story-block p:first-of-type {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: #555;
}

.story-block .story-tagline {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--color-brand);
  text-align: center;
  line-height: 1.5;
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
  margin-top: 12px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-subtitle {
    text-align: center;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 300 / 380;
  }

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