/* === O MENI PAGE === */
.about-main {
  background: var(--cream);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.about-photo-col {
  position: sticky;
  top: 7rem;
}

.about-photo-frame {
  position: relative;
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 100%; height: 100%;
  border: 2px solid var(--olive-light);
  opacity: 0.25;
}

.about-photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.6s ease;
}

.about-photo-frame:hover img { filter: saturate(1); }

.about-text-col h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--charcoal);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.about-text-col h2:first-of-type { margin-top: 0; }

.about-text-col p {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  margin-bottom: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
}

.about-text-col .highlight-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--olive);
  border-left: 3px solid var(--crimson);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}

/* APPROACH CARDS */
.approach-section {
  background: var(--olive-dark);
  color: var(--white);
  position: relative;
}

.approach-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(90,107,47,0.06) 0%, transparent 40%);
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.approach-inner .section-title { color: var(--white); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* QUALIFICATIONS */
.qualifications-section {
  background: var(--warm-white);
}

.qualifications-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.qual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.qual-block {
  padding: 2.5rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
}

.qual-block h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--crimson);
  display: inline-block;
}

.qual-block ul {
  list-style: none;
}

.qual-block ul li {
  padding: 0.5rem 0 0.5rem 1.2rem;
  position: relative;
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.qual-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive-light);
}

/* PERSONAL SECTION */
.personal-section {
  background: var(--cream);
}

.personal-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.personal-inner p {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.passions-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
}

.passion-item {
  text-align: center;
}

.passion-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--olive-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  overflow: hidden;
  padding: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.passion-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.passion-item:hover .passion-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(90,107,47,0.3);
}

.passion-item span {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

/* CTA */
.about-cta {
  background: var(--charcoal);
  text-align: center;
  padding: 5rem 2rem;
}

.about-cta h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-cta p {
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-photo-col {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
  .approach-grid { grid-template-columns: 1fr; }
  .qual-grid { grid-template-columns: 1fr; }
  .passions-row { flex-direction: column; gap: 1.5rem; }
}
.tags-margin {
  margin-top: 2rem;
}

.approach-label {
  color: var(--gold-light);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  min-width: 180px;
  text-align: center;
}