.about {
  padding: var(--space-2xl, 64px) 5%;
  background: var(--color-bg);
  overflow: hidden;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl, 40px);
}

@media (min-width: 900px) {
  .about-container {
    flex-direction: row-reverse;
    align-items: center;
    gap: var(--space-2xl, 64px);
  }
  .about-media { flex: 1.1; }
  .about-content { flex: 1; }
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s var(--ease-spring);
  opacity: 1;
}

.about-media.in-view { clip-path: inset(0 0 0 0); }

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-smooth);
}

.about-media:hover .about-img { transform: scale(1.06); }

.about-media-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: calc(var(--radius-lg, 16px) - 6px);
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s var(--ease-smooth) .3s;
}

.about-media.in-view .about-media-frame { opacity: 1; }

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gold);
  font-family: var(--font-fa);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .1em;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s var(--ease-smooth), transform .6s var(--ease-smooth);
}

.about-content.in-view .about-eyebrow { opacity: 1; transform: translateY(0); }

.about-eyebrow-line {
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width .7s var(--ease-spring) .2s;
}

.about-content.in-view .about-eyebrow-line { width: 28px; }

.about-title {
  font-family: var(--font-fa);
  font-weight: 700;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  color: var(--color-black);
  margin: 0 0 20px;
}

.about-title-line {
  display: block;
  overflow: hidden;
  position: relative;
}

.about-title-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  transform: translateX(0);
  transition: transform .8s var(--ease-spring);
}

.about-title-line:nth-child(1)::before { transition-delay: .15s; }
.about-title-line:nth-child(2)::before { transition-delay: .32s; }

.about-content.in-view .about-title-line::before { transform: translateX(101%); }

.about-text {
  font-family: var(--font-fa);
  font-weight: 300;
  line-height: 1.9;
  color: #333;
  margin-bottom: var(--space-lg, 24px);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .7s var(--ease-smooth) .3s, transform .7s var(--ease-smooth) .3s;
}

.about-content.in-view .about-text { opacity: 1; transform: translateY(0); }

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0 0 var(--space-lg, 24px);
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-fa);
  font-weight: 500;
  color: var(--color-black);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .5s var(--ease-smooth), transform .5s var(--ease-smooth);
}

.about-content.in-view .about-features li { opacity: 1; transform: translateX(0); }
.about-content.in-view .about-features li:nth-child(1) { transition-delay: .5s; }
.about-content.in-view .about-features li:nth-child(2) { transition-delay: .62s; }
.about-content.in-view .about-features li:nth-child(3) { transition-delay: .74s; }

.about-features i { color: var(--color-gold); font-size: 1.3rem; }

.about-cta {
  display: inline-block;
  font-family: var(--font-fa);
  font-weight: 500;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 12px 28px;
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .6s var(--ease-spring) .9s, transform .6s var(--ease-spring) .9s,
              background .35s var(--ease-smooth), color .35s var(--ease-smooth), box-shadow .35s var(--ease-smooth);
}

.about-content.in-view .about-cta { opacity: 1; transform: translateY(0); }

.about-cta:hover {
  background: var(--color-gold);
  color: var(--color-black);
  box-shadow: 0 0 20px rgba(201, 162, 75, .5);
}

.about-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-spring), transform .8s var(--ease-spring);
}

.about-content.in-view { opacity: 1; transform: translateY(0); }
