/* ============================================================
   about.css — Studio / About Section
   ============================================================ */

#about {
  position: relative;
  z-index: 2;
  padding: 120px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

/* ── Logo image ─────────────────────────────── */
.about-orb-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-orb {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-orb::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(15, 15, 14, 0.28);
  pointer-events: none;
  animation: orbCirclePulse 3.8s ease-in-out infinite;
}

.about-logo-img {
  width: 400px;
  height: 400px;
  object-fit: contain;
  display: block;
}

#orb-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}


.orb-ring,
.orb-ring2 {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(15, 15, 14, 0.28);
}

.orb-ring {
  width: calc(100% + 46px);
  height: calc(100% + 46px);
  animation: orbPulse1 3.8s ease-in-out infinite;
}

.orb-ring2 {
  width: calc(100% + 88px);
  height: calc(100% + 88px);
  animation: orbPulse2 4.6s ease-in-out infinite;
  border-color: rgba(15, 15, 14, 0.16);
}

@keyframes orbPulse1 {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1);    }
  50%       { opacity: 0.9; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes orbCirclePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    border-color: rgba(15, 15, 14, 0.28);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
    border-color: rgba(15, 15, 14, 1);
  }
}

@keyframes orbPulse2 {
  0%, 100% { opacity: 0.25; transform: translate(-50%, -50%) scale(1);    }
  50%       { opacity: 0.65; transform: translate(-50%, -50%) scale(1.05); }
}

.orb-text {
  position: absolute;
  bottom: 18%;
  left: 12%;
  color: rgba(236, 234, 229, 0.70);
}

.orb-text .lbl {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 5px;
  display: block;
}

.orb-text p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
}

/* ── Copy ───────────────────────────────────── */
.about-copy .sec-h { margin-bottom: 26px; }

.about-copy p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--color-ink-2);
  line-height: 1.88;
  margin-bottom: 20px;
}

.about-copy strong {
  color: var(--color-ink);
  font-weight: 500;
}

.about-ctas {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}
